2025-11-19 22:20:27 +01:00
|
|
|
#include <3ds.h>
|
|
|
|
|
|
|
|
|
|
#include <amethyst/ctru.hpp>
|
|
|
|
|
|
2025-11-26 13:46:46 +01:00
|
|
|
namespace Amy {
|
|
|
|
|
namespace Ctr {
|
|
|
|
|
void Init(ui srvs) {
|
|
|
|
|
if (srvs & Romfs) {
|
2025-11-19 22:20:27 +01:00
|
|
|
romfsInit();
|
|
|
|
|
}
|
2025-11-26 13:46:46 +01:00
|
|
|
if (srvs & GfxDefault) {
|
2025-11-19 22:20:27 +01:00
|
|
|
gfxInitDefault();
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-11-26 13:46:46 +01:00
|
|
|
ull GetTime() { return osGetTime(); }
|
|
|
|
|
} // namespace Ctr
|
|
|
|
|
} // namespace Amy
|