1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2026-05-27 21:17:10 +02:00

Added external Squirrel library.

This commit is contained in:
Sandu Liviu Catalin
2015-11-01 10:05:13 +02:00
parent 1431cb9e1e
commit c3b811cfff
37 changed files with 11779 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
/* see copyright notice in squirrel.h */
#ifndef _SQPCHEADER_H_
#define _SQPCHEADER_H_
#if defined(_MSC_VER) && defined(_DEBUG)
#include <crtdbg.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <new>
//squirrel stuff
#include <squirrel.h>
#include "sqobject.h"
#include "sqstate.h"
#endif //_SQPCHEADER_H_