diff options
author | Hop311 <hop3114@gmail.com> | 2023-07-21 01:26:31 +0200 |
---|---|---|
committer | Hop311 <hop3114@gmail.com> | 2023-07-21 01:26:31 +0200 |
commit | 62d001b0fa209f259440e160503dc5ffe5bcaa8f (patch) | |
tree | a0b28dffaba50d351cab1619f54516be23d2aa6f /game/src/Game/GameSession/GameSession.gd | |
parent | f3f240853b15a9f9b7cb561dc6626e7f342c5c74 (diff) |
Tidying: missing req comments, submodules, hotkeys
Diffstat (limited to 'game/src/Game/GameSession/GameSession.gd')
-rw-r--r-- | game/src/Game/GameSession/GameSession.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/game/src/Game/GameSession/GameSession.gd b/game/src/Game/GameSession/GameSession.gd index 5bb1c2f..2a27e3d 100644 --- a/game/src/Game/GameSession/GameSession.gd +++ b/game/src/Game/GameSession/GameSession.gd @@ -7,7 +7,7 @@ func _ready(): if GameSingleton.setup_game() != OK: push_error("Failed to setup game") -func _process(delta : float): +func _process(_delta : float): GameSingleton.try_tick() # REQUIREMENTS: |