GameEnts: Convert enumerator to defines.

This commit is contained in:
2020-03-06 03:26:41 +01:00
parent 22d9d9feb9
commit 17c892a234

View File

@@ -3,13 +3,10 @@
#ifndef _GAMEENTS_H_
#define _GAMEENTS_H_
enum {
Ent_Player,
Ent_Platform,
Ent_Block,
Ent_Last
} EntityType;
#define Ent_Player 1
#define Ent_Platform 2
#define Ent_Block 3
extern Entity ent_Player;
extern Entity ent_Platform;