2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-15 00:31:20 +00:00
metaforce/Runtime/World/CScriptCounter.hpp
2017-01-14 17:07:01 -10:00

21 lines
367 B
C++

#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);
void Accept(IVisitor& visitor);
};
}
#endif // __URDE_CSCRIPTCOUNTER_HPP__