2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 01:07:43 +00:00

More script object imps

This commit is contained in:
2016-04-20 14:07:18 -07:00
parent 8807fe4e4d
commit 4ce505989b
10 changed files with 148 additions and 4 deletions

View File

@@ -0,0 +1,30 @@
#ifndef __URDE_CSCRIPTDOCK_HPP__
#define __URDE_CSCRIPTDOCK_HPP__
#include "CPhysicsActor.hpp"
namespace urde
{
class CScriptDock : public CPhysicsActor
{
s32 x258_;
s32 x25c_dock;
TAreaId x260_area;
u32 x264_;
union
{
struct
{
bool x268_24_ : 1;
bool x268_25_ : 1;
bool x268_26_ : 1;
};
u8 dummy = 0;
};
public:
CScriptDock(TUniqueId uid, const std::string& name, const CEntityInfo& info, const zeus::CVector3f position,
const zeus::CVector3f& extent, s32, TAreaId, bool active, s32 w1, bool b1);
};
}
#endif // __URDE_CSCRIPTDOCK_HPP__