mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
f2361a27c3
Various other changes to the plugin as well.
17 lines
584 B
C++
17 lines
584 B
C++
// ------------------------------------------------------------------------------------------------
|
|
#include "Library/Utils.hpp"
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
namespace SqMod {
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
extern void Register_Buffer(HSQUIRRELVM vm);
|
|
|
|
// ================================================================================================
|
|
void Register_Utils(HSQUIRRELVM vm)
|
|
{
|
|
Register_Buffer(vm);
|
|
}
|
|
|
|
} // Namespace:: SqMod
|