sdcafiine_plugin/src/main.cpp

21 lines
442 B
C++
Raw Normal View History

2021-04-06 16:58:19 +02:00
#include "modpackSelector.h"
2022-02-04 15:05:17 +01:00
#include "utils/logger.h"
2021-04-06 16:58:19 +02:00
#include <coreinit/title.h>
2022-02-04 15:05:17 +01:00
#include <wups.h>
2021-04-06 16:58:19 +02:00
WUPS_PLUGIN_NAME("SDCafiine");
WUPS_PLUGIN_DESCRIPTION("Wiiload Server");
WUPS_PLUGIN_VERSION("0.1");
WUPS_PLUGIN_AUTHOR("Maschell");
WUPS_PLUGIN_LICENSE("GPL");
2021-10-02 11:43:15 +02:00
WUPS_USE_WUT_DEVOPTAB();
2021-04-06 16:58:19 +02:00
/* Entry point */
ON_APPLICATION_START() {
initLogging();
2021-04-06 16:58:19 +02:00
HandleMultiModPacks(OSGetTitleID());
}
2022-02-04 15:05:17 +01:00
ON_APPLICATION_ENDS() {
deinitLogging();
2021-04-06 16:58:19 +02:00
}