debd0ea559
git-svn-id: http://mc-server.googlecode.com/svn/trunk@231 0a769ca7-a7f5-676a-18bf-c427514a06d6
16 lines
191 B
C++
16 lines
191 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
|