1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-10-21 02:17:18 +02:00

WIP inventory prototyping.

This commit is contained in:
Sandu Liviu Catalin
2021-04-01 22:00:04 +03:00
parent 8dfeba7719
commit 41f7c4f75f
4 changed files with 80 additions and 0 deletions

View File

@@ -50,6 +50,7 @@ extern void Register_Constants(HSQUIRRELVM vm);
extern void Register_Log(HSQUIRRELVM vm);
extern void Register_Core(HSQUIRRELVM vm);
extern void Register_Command(HSQUIRRELVM vm);
extern void Register_Inventory(HSQUIRRELVM vm);
extern void Register_Loot(HSQUIRRELVM vm);
extern void Register_Privilege(HSQUIRRELVM vm);
extern void Register_Routine(HSQUIRRELVM vm);
@@ -104,6 +105,7 @@ bool RegisterAPI(HSQUIRRELVM vm)
Register_Log(vm);
Register_Core(vm);
Register_Command(vm);
Register_Inventory(vm);
Register_Loot(vm);
Register_Privilege(vm);
Register_Routine(vm);