from enum import Enum class ShootResult(Enum): EMPTY = "EMPTY" DAMAGED = "DAMAGED" KILLED = "KILLED" UNDEFINED = "UNDEFINED"