game2001/server/gameserver/aicomponent.h
2019-07-13 16:37:06 +08:00

12 lines
159 B
C++

#pragma once
class Entity;
class AIComponent
{
public:
Entity* owner = nullptr;
virtual ~AIComponent();
virtual void Update(int delta_time);
};