15 lines
265 B
C++
15 lines
265 B
C++
#ifndef BLUECORE_SCRIPTING_MODEL_H
|
|
#define BLUECORE_SCRIPTING_MODEL_H
|
|
|
|
#include "ModelManager.h"
|
|
#include "ScriptSystem.h"
|
|
|
|
#include "squirrel.h"
|
|
|
|
namespace BlueCore
|
|
{
|
|
void setupScriptSystem_Model(ScriptSystem* scriptsystem, ModelManager* modelmanager);
|
|
}
|
|
|
|
#endif
|