mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-14 05:11:21 +00:00
19 lines
444 B
C++
19 lines
444 B
C++
#ifndef __URDE_CSCRIPTDOCKAREACHANGE_HPP__
|
|
#define __URDE_CSCRIPTDOCKAREACHANGE_HPP__
|
|
|
|
#include "CEntity.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
class CScriptDockAreaChange : public CEntity
|
|
{
|
|
s32 x34_dockReference;
|
|
public:
|
|
CScriptDockAreaChange(TUniqueId, const std::string&, const CEntityInfo&, s32, bool);
|
|
|
|
void AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId objId, CStateManager &stateMgr);
|
|
};
|
|
}
|
|
|
|
#endif //__URDE_CSCRIPTDOCKAREACHANGE_HPP__
|