10 lines
214 B
Python
10 lines
214 B
Python
from pydantic import BaseModel
|
|
|
|
from diceplayer.config import PlayerConfig
|
|
from diceplayer.environment import System
|
|
|
|
|
|
class StateModel(BaseModel):
|
|
config: PlayerConfig
|
|
system: System
|
|
current_cycle: int |