src/openttd.h
changeset 8123 ce31d2843a95
parent 8121 3bc6351e7369
child 8130 d2eb7d04f6e1
equal deleted inserted replaced
8122:986d42e2281d 8123:ce31d2843a95
    24 struct Industry;
    24 struct Industry;
    25 struct DrawPixelInfo;
    25 struct DrawPixelInfo;
    26 struct Group;
    26 struct Group;
    27 typedef byte VehicleOrderID;  ///< The index of an order within its current vehicle (not pool related)
    27 typedef byte VehicleOrderID;  ///< The index of an order within its current vehicle (not pool related)
    28 typedef byte LandscapeID;
    28 typedef byte LandscapeID;
    29 typedef uint32 SpriteID;      ///< The number of a sprite, without mapping bits and colortables
       
    30 struct PalSpriteID {
       
    31 	SpriteID sprite;
       
    32 	SpriteID pal;
       
    33 };
       
    34 typedef int32 CursorID;
       
    35 typedef uint16 EngineID;
    29 typedef uint16 EngineID;
    36 typedef uint16 UnitID;
    30 typedef uint16 UnitID;
    37 
    31 
    38 typedef EngineID *EngineList; ///< engine list type placeholder acceptable for C code (see helpers.cpp)
    32 typedef EngineID *EngineList; ///< engine list type placeholder acceptable for C code (see helpers.cpp)
    39 
    33