8 lines
112 B
Python
8 lines
112 B
Python
|
from enum import auto, Enum
|
||
|
|
||
|
|
||
|
class RenderOrder(Enum):
|
||
|
CORPSE = auto()
|
||
|
ITEM = auto()
|
||
|
ACTOR = auto()
|