mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-15 23:20:53 +00:00
29 lines
389 B
C
29 lines
389 B
C
|
|
||
|
#ifndef __scorp_h__
|
||
|
#define __scorp_h__
|
||
|
|
||
|
/*
|
||
|
Selkis Boss AI code
|
||
|
*/
|
||
|
|
||
|
#define kMaxScorpions 5
|
||
|
|
||
|
struct Scorpion
|
||
|
{
|
||
|
short nHealth;
|
||
|
short nFrame;
|
||
|
short nAction;
|
||
|
short nSprite;
|
||
|
short nTarget;
|
||
|
short f;
|
||
|
short g;
|
||
|
schar h;
|
||
|
schar i;
|
||
|
};
|
||
|
|
||
|
void InitScorp();
|
||
|
int BuildScorp(short nSprite, int x, int y, int z, short nSector, short nAngle, int nChannel);
|
||
|
void FuncScorp(int, int, int);
|
||
|
|
||
|
#endif
|