File size: 522 Bytes
2b9a95b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | """
Middleware layer for CausalGame.
This module provides the central data hub (DroneSheet) that mediates between:
- Agent actions (modifying visible values)
- SCM effects (writing environment effects)
- Game judgment (reading standardized DroneState)
"""
from .drone_state import DroneState, EnvironmentEffects
from .drone_sheet import DroneSheet
from .visibility import VisibilityConfig, Visibility
__all__ = [
'DroneState',
'EnvironmentEffects',
'DroneSheet',
'VisibilityConfig',
'Visibility',
]
|