mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-01 04:29:59 -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;
|
|
}
|