villsim/backend/domain/__init__.py

20 lines
436 B
Python

"""Domain models for the Village Simulation."""
from .resources import ResourceType, Resource, RESOURCE_EFFECTS
from .action import ActionType, ActionConfig, ActionResult, ACTION_CONFIG
from .agent import Agent, AgentStats, Position
__all__ = [
"ResourceType",
"Resource",
"RESOURCE_EFFECTS",
"ActionType",
"ActionConfig",
"ActionResult",
"ACTION_CONFIG",
"Agent",
"AgentStats",
"Position",
]