2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 11:51:21 +00:00
metaforce/Runtime/IRuntimeMain.hpp

10 lines
142 B
C++

#pragma once
namespace metaforce {
struct IRuntimeMain {
void init() = 0;
int proc() = 0;
void stop() = 0;
};
} // namespace metaforce