villsim/backend/domain/__init__.py

28 lines
697 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
from .religion import ReligionType, ReligiousBeliefs
from .diplomacy import FactionType, AgentDiplomacy, FactionRelations
__all__ = [
"ResourceType",
"Resource",
"RESOURCE_EFFECTS",
"ActionType",
"ActionConfig",
"ActionResult",
"ACTION_CONFIG",
"Agent",
"AgentStats",
"Position",
# Religion
"ReligionType",
"ReligiousBeliefs",
# Diplomacy
"FactionType",
"AgentDiplomacy",
"FactionRelations",
]