(feat/API) replace Blizzard_APIDocumentation with Wrath Private Data (#72)

This commit is contained in:
NoM0Re
2025-10-01 22:24:58 +02:00
committed by GitHub
parent 29e6f62f54
commit 517f15c7bd
392 changed files with 29576 additions and 43596 deletions
@@ -0,0 +1,62 @@
local Tracking =
{
Name = "Tracking",
Type = "System",
Namespace = "Tracking",
Functions =
{
{
Name = "GetNumTrackingTypes",
Type = "Function",
Returns =
{
{ Name = "count", Type = "number", Nilable = false },
},
},
{
Name = "GetTrackingInfo",
Type = "Function",
Arguments =
{
{ Name = "index", Type = "luaIndex", Nilable = false },
},
Returns =
{
{ Name = "name", Type = "string", Nilable = false },
{ Name = "texture", Type = "string", Nilable = false },
{ Name = "active", Type = "bool", Nilable = false },
{ Name = "category", Type = "string", Nilable = false },
},
},
{
Name = "SetTracking",
Type = "Function",
Arguments =
{
{ Name = "index", Type = "luaIndex", Nilable = false },
{ Name = "enabled", Type = "bool", Nilable = false },
},
},
},
Events =
{
{
Name = "MinimapUpdateTracking",
Type = "Event",
LiteralName = "MINIMAP_UPDATE_TRACKING",
},
},
Tables =
{
},
};
APIDocumentation:AddDocumentationTable(Tracking);