2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-05 15:13:27 +00:00
metaforce/Runtime/IRuntimeMain.hpp
Phillip Stephens ea9938e88b CCharAnimTime fixes
Add IRuntimeMain to simplify editor integration
2016-02-26 23:59:11 -08:00

15 lines
187 B
C++

#ifndef IRUNTIMEMAIN_HPP
#define IRUNTIMEMAIN_HPP
namespace pshag
{
struct IRuntimeMain
{
void init() = 0;
int proc() = 0;
void stop() = 0;
};
}
#endif // IRUNTIMEMAIN_HPP