Checkpoint initial implementation

This commit is contained in:
Andrew Miner
2025-10-06 17:41:18 -06:00
parent 773e0a3d85
commit a8b6e6b15e
106 changed files with 3012 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
from tungston.core.habitat import Habitat
from tungston.core.fauna.mob import Mob
from tungston.core.placement import Placement
# Class ############################################################################################
class MobPlacement(Placement):
"""
A description of where a creature should appear in the world.
"""
def __init__(self, mob:Mob, habitats:list[Habitat]=None):
super().__init__(habitats)
self.mob = mob