1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 16:57:16 +01:00
SqMod/source/Entity/Keybind.cpp
Sandu Liviu Catalin 6ed02d0fd4 Initial commit.
2015-09-30 03:56:11 +03:00

30 lines
841 B
C++

#include "Entity/Keybind.hpp"
#include "Register.hpp"
// ------------------------------------------------------------------------------------------------
namespace SqMod {
// ------------------------------------------------------------------------------------------------
bool Register_CKeybind(HSQUIRRELVM vm)
{
if (!Register_Reference< CKeybind >(vm, _SC("BaseKeybind")))
{
LogDbg("Unable to register the base class <BaseKeybind> for <CKeybind> type");
return false;
}
LogDbg("Beginning registration of <CKeybind> type");
Sqrat::RootTable(vm).Bind(_SC("CKeybind"), Sqrat::DerivedClass< CKeybind, Reference< CKeybind > >(vm, _SC("CKeybind"))
.Ctor()
.Ctor< SQInt32 >()
);
LogDbg("Registration of <CKeybind> type was successful");
return true;
}
} // Namespace:: SqMod