File diff r10232:40f71efe145b → r10233:f4b6f7cfa2ac
src/gfx_type.h
Show inline comments
 
@@ -9,15 +9,16 @@
 
#include "core/enum_type.hpp"
 
#include "core/geometry_type.hpp"
 
#include "zoom_type.h"
 

	
 
typedef uint32 SpriteID;      ///< The number of a sprite, without mapping bits and colortables
 

	
 
/** Combination of a palette sprite and a 'real' sprite */
 
struct PalSpriteID {
 
	SpriteID sprite;
 
	SpriteID pal;
 
	SpriteID sprite;  ///< The 'real' sprite
 
	SpriteID pal;     ///< The palette (use \c PAL_NONE) if not needed)
 
};
 
typedef int32 CursorID;
 

	
 
enum WindowKeyCodes {
 
	WKC_SHIFT = 0x8000,
 
	WKC_CTRL  = 0x4000,