hnc-artur/HNS/MB/ShootResult.py

9 lines
113 B
Python
Raw Normal View History

2023-11-27 19:16:08 +01:00
from enum import Enum
class ShootResult(Enum):
Empty = 0
Damaged = 1
Killed = 2
Undefined = -1