All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
30 lines
680 B
Lua
30 lines
680 B
Lua
SplashWindow = {}
|
|
Window.register("splash", SplashWindow)
|
|
|
|
IntroWindow = {}
|
|
Window.register("intro", IntroWindow)
|
|
|
|
MenuWindow = {}
|
|
Window.register("menu", MenuWindow)
|
|
|
|
GameWindow = {}
|
|
Window.register("game", GameWindow)
|
|
|
|
PopupWindow = {}
|
|
Window.register("popup", PopupWindow)
|
|
|
|
ConfigurationWindow = {}
|
|
Window.register("configuration", ConfigurationWindow)
|
|
|
|
AudioTestWindow = {}
|
|
Window.register("audiotest", AudioTestWindow)
|
|
|
|
MinigameButtonMashWindow = {}
|
|
Window.register("minigame_button_mash", MinigameButtonMashWindow)
|
|
|
|
MinigameRhythmWindow = {}
|
|
Window.register("minigame_rhythm", MinigameRhythmWindow)
|
|
|
|
MinigameDDRWindow = {}
|
|
Window.register("minigame_ddr", MinigameDDRWindow)
|