hnc-vitalii/HNS/Excercises/02.11.2023 Battle Ship/ShipDirection.py

8 lines
131 B
Python
Raw Permalink Normal View History

2024-04-29 18:51:57 +02:00
from enum import Enum
class ShipDirection(Enum):
VERTICAL = 'VERTICAL'
HORIZONTAL = 'HORIZONTAL'
UNKNOWN = 'UNKNOWN'