2017-09-12 15:27:48 +00:00
|
|
|
#ifndef __URDE_CTEAMAIMGR_HPP__
|
|
|
|
#define __URDE_CTEAMAIMGR_HPP__
|
|
|
|
|
2018-05-10 02:56:54 +00:00
|
|
|
#include "CEntity.hpp"
|
2017-09-12 15:27:48 +00:00
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
2018-05-10 02:56:54 +00:00
|
|
|
|
|
|
|
class CTeamAiData
|
|
|
|
{
|
|
|
|
u32 x0_;
|
|
|
|
u32 x4_;
|
|
|
|
u32 x8_;
|
|
|
|
u32 xc_;
|
|
|
|
u32 x10_;
|
|
|
|
u32 x14_;
|
|
|
|
u32 x18_;
|
|
|
|
float x1c_;
|
|
|
|
float x20_;
|
|
|
|
public:
|
|
|
|
CTeamAiData(CInputStream& in, s32 propCount);
|
|
|
|
};
|
|
|
|
|
|
|
|
class CTeamAiMgr : public CEntity
|
2017-09-12 15:27:48 +00:00
|
|
|
{
|
2018-05-10 02:56:54 +00:00
|
|
|
public:
|
|
|
|
CTeamAiMgr(TUniqueId, std::string_view name, const CEntityInfo&, const CTeamAiData& data);
|
2017-09-12 15:27:48 +00:00
|
|
|
|
2018-05-10 02:56:54 +00:00
|
|
|
void Accept(IVisitor&);
|
2017-09-12 15:27:48 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-05-10 02:56:54 +00:00
|
|
|
#endif // __URDE_CTEAMAIMGR_HPP__
|