Files
Gods-bot/include/wrenVM.h
2025-11-03 22:47:27 +00:00

15 lines
220 B
C

#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