1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 16:37:47 +00:00

Snake: Move GUI into Snake namespace and rename SnakeGame to Game

The former is required for GML, and the latter is to avoid the verbosity
and redundancy of Snake::SnakeGame (and matches most other games in the
system).
This commit is contained in:
Timothy Flynn 2022-12-20 07:24:15 -05:00 committed by Andreas Kling
parent 36042fc1d6
commit ae90f490bd
4 changed files with 35 additions and 27 deletions

View file

@ -5,8 +5,8 @@ serenity_component(
)
set(SOURCES
Game.cpp
main.cpp
SnakeGame.cpp
)
serenity_app(Snake ICON app-snake)