games-usermod: pong wip

This commit is contained in:
Ewowi
2022-09-13 15:43:40 +02:00
parent e4fbf70568
commit 16b2dad9b9
4 changed files with 378 additions and 0 deletions

View File

@@ -136,6 +136,10 @@
#include "../usermods/audioreactive/audio_reactive.h"
#endif
#ifdef USERMOD_GAMES
#include "../usermods/usermod_v2_games/usermod_v2_games.h"
#endif
void registerUsermods()
{
/*
@@ -259,4 +263,7 @@ void registerUsermods()
#ifdef USERMOD_AUDIOREACTIVE
usermods.add(new AudioReactive());
#endif
#ifdef USERMOD_GAMES
usermods.add(new GamesUsermod());
#endif
}