/ source / blood / src / aiburn.h
aiburn.h
 1  //-------------------------------------------------------------------------
 2  /*
 3  Copyright (C) 2010-2019 EDuke32 developers and contributors
 4  Copyright (C) 2019 Nuke.YKT
 5  
 6  This file is part of NBlood.
 7  
 8  NBlood is free software; you can redistribute it and/or
 9  modify it under the terms of the GNU General Public License version 2
10  as published by the Free Software Foundation.
11  
12  This program is distributed in the hope that it will be useful,
13  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15  
16  See the GNU General Public License for more details.
17  
18  You should have received a copy of the GNU General Public License
19  along with this program; if not, write to the Free Software
20  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21  */
22  //-------------------------------------------------------------------------
23  #pragma once
24  #include "ai.h"
25  
26  extern AISTATE cultistBurnIdle;
27  extern AISTATE cultistBurnChase;
28  extern AISTATE cultistBurnGoto;
29  extern AISTATE cultistBurnSearch;
30  extern AISTATE cultistBurnAttack;
31  extern AISTATE zombieABurnChase;
32  extern AISTATE zombieABurnGoto;
33  extern AISTATE zombieABurnSearch;
34  extern AISTATE zombieABurnAttack;
35  extern AISTATE zombieFBurnChase;
36  extern AISTATE zombieFBurnGoto;
37  extern AISTATE zombieFBurnSearch;
38  extern AISTATE zombieFBurnAttack;
39  extern AISTATE innocentBurnChase;
40  extern AISTATE innocentBurnGoto;
41  extern AISTATE innocentBurnSearch;
42  extern AISTATE innocentBurnAttack;
43  extern AISTATE beastBurnChase;
44  extern AISTATE beastBurnGoto;
45  extern AISTATE beastBurnSearch;
46  extern AISTATE beastBurnAttack;
47  extern AISTATE tinycalebBurnChase;
48  extern AISTATE tinycalebBurnGoto;
49  extern AISTATE tinycalebBurnSearch;
50  extern AISTATE tinycalebBurnAttack;
51