mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-09 12:17:45 +00:00
19 lines
331 B
C++
19 lines
331 B
C++
#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
|