8285a11a26
In SquirrelBindings.h use #define USE_SQUIRREL 1 to enable squirrel git-svn-id: http://mc-server.googlecode.com/svn/trunk@76 0a769ca7-a7f5-676a-18bf-c427514a06d6
15 lines
189 B
C++
15 lines
189 B
C++
#pragma once
|
|
|
|
#define USE_SQUIRREL 0
|
|
|
|
#if USE_SQUIRREL
|
|
|
|
struct SQVM;
|
|
class SquirrelBindings
|
|
{
|
|
public:
|
|
static void Bind( SQVM* a_SquirrelVM );
|
|
static bool IsBound;
|
|
};
|
|
|
|
#endif |