metaforce/Runtime/IRuntimeMain.hpp

10 lines
142 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2021-04-10 08:42:06 +00:00
namespace metaforce {
2018-12-08 05:30:43 +00:00
struct IRuntimeMain {
void init() = 0;
int proc() = 0;
void stop() = 0;
};
2021-04-10 08:42:06 +00:00
} // namespace metaforce