metaforce/Runtime/IRuntimeMain.hpp

10 lines
132 B
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2018-12-07 21:30:43 -08:00
namespace urde {
struct IRuntimeMain {
void init() = 0;
int proc() = 0;
void stop() = 0;
};
2018-12-07 21:30:43 -08:00
} // namespace urde