mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 21:11:21 +00:00
13 lines
122 B
C++
13 lines
122 B
C++
#pragma once
|
|
|
|
namespace urde
|
|
{
|
|
struct IRuntimeMain
|
|
{
|
|
void init() = 0;
|
|
int proc() = 0;
|
|
void stop() = 0;
|
|
};
|
|
}
|
|
|