Fix comments

This commit is contained in:
Rampoina 2023-03-05 17:58:00 +01:00
parent d0b9fa17fa
commit 7c02f21b75
1 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ Game⇐{ # The Game function creates a game object
# We (try to) push the tile in front of the player
Step{Push((𝕨 Tiles player FindIdx ¨𝕩))𝕩} # 𝕨 S 𝕩 | 𝕨: direction | 𝕩:level | Step the game
# - The lasers shoot lasers that get intercepted by opaque objects and
# - The lasers shoot lasers beams that get intercepted by opaque objects and
# bounce on mirrors:
# w‿d Bounce x | x: map | w‿d: w: current position, d: direction of the laser
@ -124,5 +124,5 @@ Game⇐{ # The Game function creates a game object
WinLevel{𝕊:Win(currentLevellevels)Step´moves}
Reset{𝕊:moves00}
NextLevel{𝕊:currentLevelcurrentLevel+1Reset @}
Over{𝕊:currentLevel<levels}
Over{𝕊:currentLevel<levels} # has the user beaten all of the levels?
}