playscii/playscii/ui_list_operations.py
Jared Miller d84d1d809b
Reorganize source into playscii/ package
Move all root .py files into playscii/ package directory.
Rename playscii.py to app.py, add __main__.py entry point.
Convert bare imports to relative (within package) and absolute
(in formats/ and games/). Data dirs stay at root.
2026-02-12 21:01:13 -05:00

13 lines
296 B
Python

# list operations - tells ListPanel what to do when clicked
LO_NONE = 0
LO_SELECT_OBJECTS = 1
LO_SET_SPAWN_CLASS = 2
LO_LOAD_STATE = 3
LO_SET_ROOM = 4
LO_SET_ROOM_OBJECTS = 5
LO_SET_OBJECT_ROOMS = 6
LO_OPEN_GAME_DIR = 7
LO_SET_ROOM_EDGE_WARP = 8
LO_SET_ROOM_EDGE_OBJ = 9
LO_SET_ROOM_CAMERA = 10