summaryrefslogtreecommitdiff
path: root/src/gfx_type.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gfx_type.h')
-rw-r--r--src/gfx_type.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gfx_type.h b/src/gfx_type.h
index 97e987488..7006fa967 100644
--- a/src/gfx_type.h
+++ b/src/gfx_type.h
@@ -243,4 +243,12 @@ enum PaletteType {
MAX_PAL = 2, ///< The number of palettes.
};
+/** Types of sprites that might be loaded */
+enum SpriteType {
+ ST_NORMAL = 0, ///< The most basic (normal) sprite
+ ST_MAPGEN = 1, ///< Special sprite for the map generator
+ ST_FONT = 2, ///< A sprite used for fonts
+ ST_RECOLOUR = 3, ///< Recolour sprite
+};
+
#endif /* GFX_TYPE_H */