mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-10 04:59:23 +01:00
26 lines
442 B
C
26 lines
442 B
C
#include "my_first_rpl.h"
|
|
|
|
#include <coreinit/thread.h>
|
|
#include <coreinit/time.h>
|
|
|
|
#include <whb/proc.h>
|
|
#include <whb/log.h>
|
|
#include <whb/log_console.h>
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
WHBProcInit();
|
|
WHBLogConsoleInit();
|
|
WHBLogPrintf(my_first_export());
|
|
|
|
while(WHBProcIsRunning()) {
|
|
WHBLogConsoleDraw();
|
|
OSSleepTicks(OSMillisecondsToTicks(30));
|
|
}
|
|
|
|
WHBLogConsoleFree();
|
|
WHBProcShutdown();
|
|
return 0;
|
|
}
|