human/human/message_type.py
2024-10-25 08:23:55 +08:00

10 lines
184 B
Python

#encoding = utf8
from enum import Enum
class MessageType(Enum):
Unknown = 0
Video_Render_Queue_Empty = 1
Video_Render_Queue_Not_Empty = 2
Video_Render_Queue_Full = 3