1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-11 04:57:45 +00:00
sapphire/src/servers/Server_Common/Script/ChaiscriptStdLib.h

20 lines
331 B
C
Raw Normal View History

2017-08-08 13:53:47 +02:00
#ifndef CHAISCRIPT_STDLIB
#define CHAISCRIPT_STDLIB
#include <boost/shared_ptr.hpp>
namespace chaiscript
{
class Module;
class ChaiScript;
}
namespace Core { namespace Scripting {
std::shared_ptr<chaiscript::Module> create_chaiscript_stdlib();
boost::shared_ptr< chaiscript::ChaiScript > create_chaiscript();
} }
#endif