mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-13 06:25:52 +00:00
12 lines
223 B
C++
12 lines
223 B
C++
#ifndef _CSTATEMANAGER_HPP
|
|
#define _CSTATEMANAGER_HPP
|
|
|
|
#include "types.h"
|
|
|
|
class CStateManager {
|
|
public:
|
|
void SendScriptMsg(TUniqueId uid, TEditorId target, EScriptObjectMessage msg, EScriptObjectState state);
|
|
};
|
|
|
|
#endif
|