metaforce/Runtime/IRuntimeMain.hpp

13 lines
122 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2016-03-04 23:04:53 +00:00
namespace urde
{
struct IRuntimeMain
{
void init() = 0;
int proc() = 0;
void stop() = 0;
};
}