src/sprite.h
changeset 5919 2b58160d667d
parent 5726 8f399788f6c9
child 6298 c30fe89622df
--- a/src/sprite.h	Sun Jan 14 19:44:27 2007 +0000
+++ b/src/sprite.h	Sun Jan 14 19:57:49 2007 +0000
@@ -15,11 +15,13 @@
 	byte size_x;
 	byte size_y;
 	byte size_z;
-	uint32 image;
+	SpriteID image;
+	SpriteID pal;
 } DrawTileSeqStruct;
 
 typedef struct DrawTileSprites {
 	SpriteID ground_sprite;
+	SpriteID ground_pal;
 	const DrawTileSeqStruct* seq;
 } DrawTileSprites;
 
@@ -28,8 +30,8 @@
  * Buildings here reference a general type of construction
  */
 typedef struct DrawBuildingsTileStruct {
-	SpriteID ground;
-	SpriteID building;
+	PalSpriteID ground;
+	PalSpriteID building;
 	byte subtile_x:4;
 	byte subtile_y:4;
 	byte width:4;