mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
The contents are completely uninteresting, but at least it's visible. Fixes https://github.com/dcs-liberation/dcs_liberation/issues/978.
10 lines
125 B
Python
10 lines
125 B
Python
from __future__ import annotations
|
|
|
|
from enum import Enum
|
|
|
|
|
|
class TurnState(Enum):
|
|
WIN = 0
|
|
LOSS = 1
|
|
CONTINUE = 2
|