Begin integrating Neko support

This commit is contained in:
Joshua Granick
2014-06-25 14:34:27 -07:00
parent cd879b6287
commit d2f34a71dc
6 changed files with 122 additions and 2 deletions

20
project/include/vm/Neko.h Normal file
View File

@@ -0,0 +1,20 @@
#ifndef LIME_VM_NEKO_H
#define LIME_VM_NEKO_H
namespace lime {
class Neko {
public:
static void Execute (const char *module);
};
}
#endif