2015-09-30 02:56:11 +02:00
|
|
|
#include "Library/Shared.hpp"
|
|
|
|
#include "Register.hpp"
|
|
|
|
|
2015-11-01 04:36:03 +01:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
#include "Config.hpp"
|
|
|
|
|
2015-09-30 02:56:11 +02:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
namespace SqMod {
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
bool Register_Library(HSQUIRRELVM vm)
|
|
|
|
{
|
2015-11-01 04:36:03 +01:00
|
|
|
SQMOD_UNUSED_VAR(vm);
|
2015-09-30 02:56:11 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} // Namespace:: SqMod
|