This commit is contained in:
aozhiwei 2021-06-08 20:01:14 +08:00
parent ee0005663c
commit 68f277ab62
4 changed files with 7 additions and 21 deletions

View File

@ -5,6 +5,13 @@ namespace MetaData
class AI;
}
enum ShotType_e
{
kShotNone = 0,
kShotClick = 1,
kShotHold = 2,
};
class MoveableEntity;
class AIComponent
{

View File

@ -11,13 +11,6 @@
const int SHUA_RANGE = 580;
enum ShotType_e
{
kShotNone = 0,
kShotClick = 1,
kShotHold = 2,
};
enum AndroidState_e : int
{
AS_thinking,

View File

@ -8,13 +8,6 @@
#include "metamgr.h"
#include "player.h"
enum ShotType_e
{
kShotNone = 0,
kShotClick = 1,
kShotHold = 2,
};
enum HeroState_e : int
{
HSE_Idle = 0,

View File

@ -12,13 +12,6 @@
const int SHUA_RANGE = 580;
enum ShotType_e
{
kShotNone = 0,
kShotClick = 1,
kShotHold = 2,
};
enum ZombieState_e : int
{
ZSE_Idle = 0,