Checkpoint initial implementation
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user