mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-23 14:14:45 +00:00
21 lines
374 B
C++
21 lines
374 B
C++
#pragma once
|
|
#include "playerObject.h"
|
|
|
|
//#include "T3D/components/ai/aiControllerComponent.h"
|
|
|
|
class AIPlayerObject : public PlayerObject
|
|
{
|
|
typedef PlayerObject Parent;
|
|
|
|
//AIControllerComponent* mAIControllerComponent;
|
|
|
|
public:
|
|
AIPlayerObject();
|
|
~AIPlayerObject();
|
|
|
|
virtual bool onAdd();
|
|
virtual void onRemove();
|
|
|
|
DECLARE_CONOBJECT(AIPlayerObject);
|
|
};
|