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

6 lines
129 B
Python
Raw Normal View History

2024-04-16 11:47:52 +02:00
from enum import Enum
class ShipDirection(Enum):
2024-04-29 19:05:10 +02:00
VERTICAL = "VERTICAL"
HORIZONTAL = "HORIZONTAL"
UNKNOWN = "UNKNOWN"