mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-07-16 02:45:54 +00:00
21 lines
504 B
C++
21 lines
504 B
C++
#ifndef __URDE_CSCRIPTDOOR_HPP__
|
|
#define __URDE_CSCRIPTDOOR_HPP__
|
|
|
|
#include "CPhysicsActor.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
class CScriptDoor : public CPhysicsActor
|
|
{
|
|
public:
|
|
CScriptDoor(TUniqueId, const std::string& name, const CEntityInfo& info,
|
|
const zeus::CTransform&, const CModelData&, const CActorParameters&,
|
|
const zeus::CVector3f&, const zeus::CAABox&,
|
|
bool active, bool material, bool, float, bool ballDoor);
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __URDE_CSCRIPTDOOR_HPP__
|