metaforce/Runtime/IRuntimeMain.hpp

15 lines
186 B
C++
Raw Normal View History

#ifndef IRUNTIMEMAIN_HPP
#define IRUNTIMEMAIN_HPP
2016-03-04 15:04:53 -08:00
namespace urde
{
struct IRuntimeMain
{
void init() = 0;
int proc() = 0;
void stop() = 0;
};
}
#endif // IRUNTIMEMAIN_HPP