metaforce/Runtime/World/CScriptCounter.hpp

21 lines
367 B
C++
Raw Normal View History

2016-04-19 21:25:26 +00:00
#ifndef __URDE_CSCRIPTCOUNTER_HPP__
#define __URDE_CSCRIPTCOUNTER_HPP__
#include "CEntity.hpp"
namespace urde
{
class CScriptCounter : public CEntity
{
public:
CScriptCounter(TUniqueId, const std::string& name, const CEntityInfo& info,
u32, u32, bool, bool);
2017-01-15 03:07:01 +00:00
void Accept(IVisitor& visitor);
2016-04-19 21:25:26 +00:00
};
}
#endif // __URDE_CSCRIPTCOUNTER_HPP__