hnc-daniil/HNC/Exercises/Ship_Battle/ShipDirection.py

6 lines
129 B
Python

from enum import Enum
class ShipDirection(Enum):
VERTICAL = "VERTICAL"
HORIZONTAL = "HORIZONTAL"
UNKNOWN = "UNKNOWN"