Skip to content

Commit

Permalink
missing stuff in struct
Browse files Browse the repository at this point in the history
  • Loading branch information
lunathanael committed Mar 12, 2024
1 parent 927cf90 commit 7c225ee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion clash_royale/envs/game_engine/struct.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class GameScheduler:
"""
Template class for game scheduling
"""

def __init__(self, scheduler: Scheduler, fps: int=30) -> None:
self.scheduler: Scheduler = scheduler
self.fps: int = fps
Expand All @@ -48,6 +48,7 @@ def game_state(self) -> int:
Function to get current game state:
ex: Game is over, double elixir, overtime, etc.
"""

return 0

def is_game_over(self) -> bool:
Expand Down

0 comments on commit 7c225ee

Please sign in to comment.