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

12 lines
167 B
Python
Raw Normal View History

from enum import Enum
class ShipMode(Enum):
PUT = "PUT"
SHOOT = "SHOOT"
class ShipDirection(Enum):
VERTICAL = "VERTICAL"
HORIZONTAL = "HORIZONTAL"