mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
15 lines
378 B
C++
15 lines
378 B
C++
#include "Library/Math.hpp"
|
|
#include "Register.hpp"
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
namespace SqMod {
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
bool Register_Math(HSQUIRRELVM vm)
|
|
{
|
|
SQMOD_UNUSED_VAR(vm);
|
|
return true;
|
|
}
|
|
|
|
} // Namespace:: SqMod
|