mirror of
https://github.com/zeldaret/ss
synced 2026-05-30 17:05:45 -04:00
17 lines
197 B
C++
17 lines
197 B
C++
#ifndef D_MAIN_H
|
|
#define D_MAIN_H
|
|
|
|
#include "rvl/OS.h"
|
|
|
|
namespace dMain {
|
|
|
|
OSTime g_InitialTime;
|
|
|
|
void Create();
|
|
void Execute();
|
|
void *main01(void *arg);
|
|
|
|
}; // namespace dMain
|
|
|
|
#endif // D_MAIN_H
|