hnc-eduard/HNS/Excercises/ShipCraft/Переделка/ShootResult.py

9 lines
151 B
Python
Raw Permalink Normal View History

2024-07-21 19:40:04 +02:00
from enum import Enum
class ShootResult(Enum):
EMPTY = "EMPTY"
DAMAGED = "DAMAGED"
KILLED = "KILLED"
UNDEFINED = "UNDEFINED"