/RemoteValue

An old attempt to make dealing with memory from other processes feel more natural in c++

Primary LanguageC++

Example

RemoteValue<int> iHealth(address);

while(true)
{
    BaseRemote::ReadAll(pid);
    if(iHealth > 0) {
        ...
    }


    BaseRemote::WriteAll(pid);
}