metaforce/Runtime/IRuntimeMain.hpp

10 lines
142 B
C++
Raw Normal View History

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