mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Move frozen combat handling out of MapModel.
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
from __future__ import annotations
|
||||
|
||||
import uuid
|
||||
from abc import ABC, abstractmethod
|
||||
from collections.abc import Iterator
|
||||
from typing import TYPE_CHECKING
|
||||
@@ -11,6 +12,9 @@ if TYPE_CHECKING:
|
||||
|
||||
|
||||
class FrozenCombat(ABC):
|
||||
def __init__(self) -> None:
|
||||
self.id = uuid.uuid4()
|
||||
|
||||
@abstractmethod
|
||||
def because(self) -> str:
|
||||
...
|
||||
|
||||
Reference in New Issue
Block a user