mirror of https://github.com/AxioDL/metaforce.git
18 lines
303 B
C++
18 lines
303 B
C++
|
#ifndef CSCRIPTRELAY_HPP
|
||
|
#define CSCRIPTRELAY_HPP
|
||
|
|
||
|
#include "CEntity.hpp"
|
||
|
|
||
|
namespace urde
|
||
|
{
|
||
|
class CScriptRelay : public CEntity
|
||
|
{
|
||
|
TUniqueId x34_ = kInvalidUniqueId;
|
||
|
u32 x38_ = 0;
|
||
|
public:
|
||
|
CScriptRelay(TUniqueId, const std::string&, const CEntityInfo&, bool);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif // CSCRIPTRELAY_HPP
|