Files
lime/project/include/vm/NekoVM.h
2018-07-18 17:32:51 -07:00

20 lines
161 B
C++

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