initial monopoly test
This commit is contained in:
@@ -52,6 +52,7 @@
|
||||
#include "game_launcher.h"
|
||||
#include "tic_tac_toe.h"
|
||||
#include "demo_game.h"
|
||||
#include "monopoly_game.h"
|
||||
|
||||
|
||||
// Binary info for RP2350 - ensures proper boot image structure
|
||||
@@ -349,6 +350,11 @@ int main()
|
||||
[](uint16_t w, uint16_t h, LowLevelRenderer* r, LowLevelGUI* g, InputManager* im) -> Game* {
|
||||
return new TicTacToeGame(w, h, r, g, im);
|
||||
});
|
||||
|
||||
launcher.register_game("Monopoly", "Classic property trading game",
|
||||
[](uint16_t w, uint16_t h, LowLevelRenderer* r, LowLevelGUI* g, InputManager* im) -> Game* {
|
||||
return new MonopolyGame(w, h, r, g, im);
|
||||
});
|
||||
|
||||
launcher.register_game("Demo Game", "Simple test game",
|
||||
[](uint16_t w, uint16_t h, LowLevelRenderer* r, LowLevelGUI* g, InputManager* im) -> Game* {
|
||||
|
||||
Reference in New Issue
Block a user