prime/include/MetroidPrime/CStateManager.hpp

12 lines
223 B
C++
Raw Normal View History

2022-08-09 23:03:51 +00:00
#ifndef _CSTATEMANAGER_HPP
#define _CSTATEMANAGER_HPP
#include "types.h"
2022-08-11 02:33:46 +00:00
class CStateManager {
public:
void SendScriptMsg(TUniqueId uid, TEditorId target, EScriptObjectMessage msg, EScriptObjectState state);
};
2022-08-09 23:03:51 +00:00
#endif