mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-15 06:41:21 +00:00
34 lines
530 B
Zig
34 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,
|
|
};
|