hnc-artur/HNS/MB/ShootResult.py

9 lines
113 B
Python

from enum import Enum
class ShootResult(Enum):
Empty = 0
Damaged = 1
Killed = 2
Undefined = -1