replace defines where possible

This commit is contained in:
Ara
2023-12-04 21:34:51 +06:00
parent 24b3048c73
commit e0eacb51be
5 changed files with 50 additions and 50 deletions
+4 -4
View File
@@ -7,10 +7,10 @@
#include <map>
#include <queue>
#define ASSET_TEXTURE 1
#define ASSET_SHADER 2
#define ASSET_FONT 3
#define ASSET_ATLAS 4
const short ASSET_TEXTURE = 1;
const short ASSET_SHADER = 2;
const short ASSET_FONT = 3;
const short ASSET_ATLAS = 4;
class Assets;