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

WIP loot distribution prototyping.

This commit is contained in:
Sandu Liviu Catalin
2021-04-01 21:58:42 +03:00
parent 0ec506f8e8
commit 8dfeba7719
4 changed files with 246 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_Loot(HSQUIRRELVM vm);
extern void Register_Privilege(HSQUIRRELVM vm);
extern void Register_Routine(HSQUIRRELVM vm);
extern void Register_Tasks(HSQUIRRELVM vm);
@@ -103,6 +104,7 @@ bool RegisterAPI(HSQUIRRELVM vm)
Register_Log(vm);
Register_Core(vm);
Register_Command(vm);
Register_Loot(vm);
Register_Privilege(vm);
Register_Routine(vm);
Register_Tasks(vm);