mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-28 03:59:58 -07:00
12 lines
160 B
C
12 lines
160 B
C
#include "settings.h"
|
|
#include "assets.h"
|
|
|
|
int32_t xtreme_srv(void* p) {
|
|
UNUSED(p);
|
|
|
|
XTREME_SETTINGS_LOAD();
|
|
XTREME_ASSETS_LOAD();
|
|
|
|
return 0;
|
|
}
|