from enum import IntEnum


class GameTurn(IntEnum):
    """
    Enum for the game turn
    """

    CHALLENGER = 1
    OPPONENT = 2
