Include Blizzard_APIDocumentation and Search API Button to Code Editor with Wrath Classic Data (#57)

This commit is contained in:
NoM0Re
2025-07-05 19:08:53 +02:00
committed by GitHub
parent ad68aa2f97
commit 0971189346
319 changed files with 47180 additions and 18 deletions
@@ -0,0 +1,70 @@
local GlyphInfo =
{
Name = "GlyphInfo",
Type = "System",
Namespace = "C_GlyphInfo",
Functions =
{
},
Events =
{
{
Name = "ActivateGlyph",
Type = "Event",
LiteralName = "ACTIVATE_GLYPH",
Payload =
{
{ Name = "spellID", Type = "number", Nilable = false },
},
},
{
Name = "CancelGlyphCast",
Type = "Event",
LiteralName = "CANCEL_GLYPH_CAST",
},
{
Name = "GlyphAdded",
Type = "Event",
LiteralName = "GLYPH_ADDED",
Payload =
{
{ Name = "glyphSlot", Type = "number", Nilable = false },
},
},
{
Name = "GlyphRemoved",
Type = "Event",
LiteralName = "GLYPH_REMOVED",
Payload =
{
{ Name = "glyphSlot", Type = "number", Nilable = false },
},
},
{
Name = "GlyphUpdated",
Type = "Event",
LiteralName = "GLYPH_UPDATED",
Payload =
{
{ Name = "glyphSlot", Type = "number", Nilable = false },
},
},
{
Name = "UseGlyph",
Type = "Event",
LiteralName = "USE_GLYPH",
Payload =
{
{ Name = "spellID", Type = "number", Nilable = false },
},
},
},
Tables =
{
},
};
APIDocumentation:AddDocumentationTable(GlyphInfo);