1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-07-06 08:57:11 +02:00

Initial commit.

This commit is contained in:
Sandu Liviu Catalin
2015-09-30 03:56:11 +03:00
parent 4bd8e68a7b
commit 6ed02d0fd4
118 changed files with 23795 additions and 0 deletions

29
source/Entity/Pickup.cpp Normal file
View File

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