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

6 lines
102 B
Python
Raw Normal View History

2024-04-16 11:47:52 +02:00
from enum import Enum
class ShipDirection(Enum):
VERTICAL = 0
HORIZONTAL = 1
UNKNOWN = -1