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

30 lines
877 B
C++

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