2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 21:51:22 +00:00
metaforce/Runtime/World/CScriptRandomRelay.hpp
Phillip Stephens 63985b6063 CPatterned arg type fix
Relay loader imps
CBeetle loader imp
Change CAiFuncMap's const char* to std::string
2016-05-17 20:57:43 -07:00

19 lines
363 B
C++

#ifndef CSCRIPTRANDOMRELAY_HPP
#define CSCRIPTRANDOMRELAY_HPP
#include "CEntity.hpp"
namespace urde
{
class CScriptRandomRelay : public CEntity
{
u32 x34_connectionCount;
u32 x38_variance;
bool x3c_clamp;
public:
CScriptRandomRelay(TUniqueId, const std::string&, const CEntityInfo&, s32, s32, bool, bool);
};
}
#endif // CSCRIPTRANDOMRELAY_HPP