2016-04-19 21:25:26 +00:00
|
|
|
#ifndef __URDE_CSCRIPTTRIGGER_HPP__
|
|
|
|
#define __URDE_CSCRIPTTRIGGER_HPP__
|
|
|
|
|
|
|
|
#include "CActor.hpp"
|
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
class CDamageInfo;
|
|
|
|
|
|
|
|
class CScriptTrigger : public CActor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CScriptTrigger(TUniqueId, const std::string& name, const CEntityInfo& info,
|
|
|
|
const zeus::CVector3f& pos, const zeus::CAABox&,
|
|
|
|
const CDamageInfo& dInfo, const zeus::CVector3f& orientedForce,
|
2016-04-20 05:44:08 +00:00
|
|
|
u32 triggerFlags, bool, bool, bool);
|
2016-04-19 21:25:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __URDE_CSCRIPTTRIGGER_HPP__
|