aboutsummaryrefslogtreecommitdiff
path: root/kennel/engine/systems/system.py
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth@simponic.xyz>2024-09-07 20:20:07 -0700
committerElizabeth Hunt <elizabeth@simponic.xyz>2024-09-12 17:23:30 -0700
commit8ec7f5368232d59f344e1067e1bad5e48dbcb7ae (patch)
tree1ad2df4dc00773f2307d1525cc80ac7410ea8fba /kennel/engine/systems/system.py
parente4e31978bae7e45be57b376415a4b925ac8cbc03 (diff)
downloadkennel.hatecomputers.club-8ec7f5368232d59f344e1067e1bad5e48dbcb7ae.tar.gz
kennel.hatecomputers.club-8ec7f5368232d59f344e1067e1bad5e48dbcb7ae.zip
get "cats" up there
Diffstat (limited to 'kennel/engine/systems/system.py')
-rw-r--r--kennel/engine/systems/system.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/kennel/engine/systems/system.py b/kennel/engine/systems/system.py
index e3ddb27..8c577a6 100644
--- a/kennel/engine/systems/system.py
+++ b/kennel/engine/systems/system.py
@@ -7,6 +7,7 @@ from kennel.engine.entities.entity import EntityManager
class SystemType(str, Enum):
NETWORK = "NETWORK"
WORLD = "WORLD"
+ MARKOV = "MARKOV"
class System:
@@ -14,7 +15,7 @@ class System:
self.system_type = system_type
@abstractmethod
- async def update(self, entity_manager: EntityManager, delta_time: float):
+ async def update(self, entity_manager: EntityManager, delta_time: float) -> None:
pass