Upload files to "include"
This commit is contained in:
14
include/wrenVM.h
Normal file
14
include/wrenVM.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#ifndef WRENVM_h
|
||||
#define WRENVM_h
|
||||
|
||||
// creates the vm
|
||||
void WrenVmInit(void);
|
||||
|
||||
// runs commands in wren
|
||||
char* WrenCommandHandler(const char* cmd, const char* args);
|
||||
|
||||
// frees the vm on end
|
||||
|
||||
void WrenVmFree(void);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user