14 lines
171 B
C++
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);
|
|
}
|
|
};
|