2025-11-19 22:20:27 +01:00
|
|
|
#include <3ds.h>
|
|
|
|
|
|
|
|
|
|
#include <amethyst/ctru.hpp>
|
|
|
|
|
|
|
|
|
|
namespace amy {
|
|
|
|
|
namespace ctru {
|
|
|
|
|
void init(unsigned int srvs) {
|
|
|
|
|
if (srvs & romfs) {
|
|
|
|
|
romfsInit();
|
|
|
|
|
}
|
|
|
|
|
if (srvs & gfx_def) {
|
|
|
|
|
gfxInitDefault();
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-11-24 10:02:22 +01:00
|
|
|
ull getTime() { return osGetTime(); }
|
2025-11-19 22:20:27 +01:00
|
|
|
} // namespace ctru
|
|
|
|
|
} // namespace amy
|