Jaswin-27/MetaXSCALER_Hackathon
0
1from models import State, Action, StepResult
2
3s = State(energy=100, money=0, happiness=50, day=1)
4a = Action(type="work")
5
6print(s)
7print(a)1from models import State, Action, StepResult
2
3s = State(energy=100, money=0, happiness=50, day=1)
4a = Action(type="work")
5
6print(s)
7print(a)