2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 08:27:42 +00:00

CCharAnimTime fixes

Add IRuntimeMain to simplify editor integration
This commit is contained in:
2016-02-26 23:59:11 -08:00
parent 45c76dc9c1
commit ea9938e88b
2 changed files with 16 additions and 1 deletions

14
Runtime/IRuntimeMain.hpp Normal file
View File

@@ -0,0 +1,14 @@
#ifndef IRUNTIMEMAIN_HPP
#define IRUNTIMEMAIN_HPP
namespace pshag
{
struct IRuntimeMain
{
void init() = 0;
int proc() = 0;
void stop() = 0;
};
}
#endif // IRUNTIMEMAIN_HPP