Indented some comments

Signed-off-by: Gabriel Ravier <gabravier@gmail.com>
This commit is contained in:
Gabriel Ravier 2019-09-15 16:05:24 +02:00
parent 002e0f7760
commit 9e5e2a0e26
No known key found for this signature in database
GPG key ID: 1E75F156884F3DCE
3 changed files with 19 additions and 19 deletions

View file

@ -25,6 +25,12 @@
else \ else \
npc->rect = rcRight[npc->ani_no] npc->rect = rcRight[npc->ani_no]
enum NPCCond
{
NPCCOND_DAMAGE_BOSS = 0x10, // (gBoss npc exclusive) When set, damage the main boss
NPCCOND_ALIVE = 0x80 // Whether the NPC is alive or not
};
// Be careful when changing these: they're baked into the 'npc.tbl' file // Be careful when changing these: they're baked into the 'npc.tbl' file
enum NPCFlags enum NPCFlags
{ {
@ -45,12 +51,6 @@ enum NPCFlags
NPC_SHOW_DAMAGE = 1<<15 // Show the number of damage taken when harmed NPC_SHOW_DAMAGE = 1<<15 // Show the number of damage taken when harmed
}; };
enum NPCCond
{
NPCCOND_DAMAGE_BOSS = 0x10, // (gBoss npc exclusive) When set, damage the main boss
NPCCOND_ALIVE = 0x80 // Whether the NPC is alive or not
};
enum NPCNames enum NPCNames
{ {
NPC_NULL = 0, NPC_NULL = 0,