mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-15 14:51:21 +00:00
35 lines
530 B
Zig
35 lines
530 B
Zig
|
pub const CursorType = enum {
|
||
|
Normal,
|
||
|
ArrowUp,
|
||
|
ArrowUpLeft,
|
||
|
ArrowUpRight,
|
||
|
ArrowDown,
|
||
|
ArrowDownLeft,
|
||
|
ArrowDownRight,
|
||
|
ArrowLeft,
|
||
|
ArrowRight,
|
||
|
LiveNothing,
|
||
|
LiveObjectUnavail,
|
||
|
LivePerson,
|
||
|
IBeam,
|
||
|
|
||
|
SimsRotate,
|
||
|
SimsRotateNE,
|
||
|
SimsRotateSE,
|
||
|
SimsRotateSW,
|
||
|
SimsRotateNW,
|
||
|
|
||
|
SimsMove,
|
||
|
SimsPlace,
|
||
|
|
||
|
Hourglass,
|
||
|
|
||
|
LiveObjectAvail,
|
||
|
LiveObject1Star,
|
||
|
LiveObject2Star,
|
||
|
LiveObject3Star,
|
||
|
LiveObject4Star,
|
||
|
LiveObject5Star,
|
||
|
LiveObjectSpecial,
|
||
|
};
|