29 lines
180 B
C
29 lines
180 B
C
|
|
#pragma once
|
|
|
|
#ifdef USE_SQUIRREL
|
|
|
|
|
|
|
|
|
|
#include <sqrat.h>
|
|
|
|
|
|
|
|
|
|
|
|
HSQUIRRELVM OpenSquirrelVM();
|
|
void CloseSquirrelVM();
|
|
|
|
void sqPrint(SQChar * text);
|
|
|
|
|
|
|
|
|
|
|
|
#endif // USE_SQUIRREL
|
|
|
|
|
|
|
|
|