Skip to content

Commit

Permalink
added is_overtime template function
Browse files Browse the repository at this point in the history
  • Loading branch information
lunathanael committed Mar 12, 2024
1 parent d089218 commit 0e1344b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions clash_royale/envs/game_engine/struct.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,12 @@ def game_state(self) -> int:
ex: Game is over, double elixir, overtime, etc.
"""
return 0

def is_game_over(self) -> bool:
return False


def is_overtime(self) -> bool:
return False

@dataclasses.dataclass(slots=True)
class Stats:
Expand Down

0 comments on commit 0e1344b

Please sign in to comment.