X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=ABM2%2FEngine%2Fengine.h;h=79660d20c51f99fd5cffc385599bb818a7bbd418;hb=75d4212e8548f64904bad6d7f8978c077e6687d0;hp=cd685faa7d70b0cd90f6c24e8e7a302f529837bd;hpb=0b314338a46fe83c1c4bb646da858ebd5d4a7317;p=matthijs%2FABM2.git diff --git a/ABM2/Engine/engine.h b/ABM2/Engine/engine.h index cd685fa..79660d2 100755 --- a/ABM2/Engine/engine.h +++ b/ABM2/Engine/engine.h @@ -3,7 +3,6 @@ #pragma warning ( disable : 4786 ) - #include #include #include @@ -21,9 +20,7 @@ #include #include -#ifdef WIN32 -#include -#endif +#include "porting.h" //even though resource.h is technically a Win32-resource file, it's just a bunch of defines, so it's ok (and necessary) #include "resource.h" @@ -58,4 +55,18 @@ #include "misc.h" #include "math.h" +/** Where should this be? */ +enum SpriteID { + SPR_NONE = 0, + SPR_FIELD, + SPR_TILE, + SPR_PLAYER, +}; + +enum { + SPR_SUB_BRICK = 0, + SPR_SUB_SOLID = 1, + SPR_SUB_CLEAR = 2, +}; + #endif