hnc-anton/ShootResult.py

9 lines
151 B
Python
Raw Normal View History

2024-05-12 15:16:19 +02:00
from enum import Enum
class ShootResult(Enum):
EMPTY = "EMPTY"
DAMAGED = "DAMAGED"
KILLED = "KILLED"
UNDEFINED = "UNDEFINED"