2025-07-29 20:23:06 +03:00

14 lines
171 B
C++

#pragma once
// used: MEM::CallVFunc
#include "../../utilities/memory.h"
class CPVS
{
public:
void Set(bool bState)
{
MEM::CallVFunc<void*, 7U>(this, bState);
}
};