Files
lime/project/include/vm/NekoVM.h
2014-06-26 07:37:15 -07:00

20 lines
172 B
C++

#ifndef LIME_VM_NEKOVM_H
#define LIME_VM_NEKOVM_H
namespace lime {
class NekoVM {
public:
static void Execute (const char *module);
};
}
#endif