(feat/API) replace Blizzard_APIDocumentation with Wrath Private Data (#72)
This commit is contained in:
@@ -1,461 +1,263 @@
|
||||
local Map =
|
||||
{
|
||||
Name = "MapUI",
|
||||
Name = "Map",
|
||||
Type = "System",
|
||||
Namespace = "C_Map",
|
||||
Namespace = "Map",
|
||||
|
||||
Functions =
|
||||
{
|
||||
{
|
||||
Name = "GetAreaInfo",
|
||||
Name = "ClickLandmark",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "mapLinkID", Type = "number", Nilable = false },
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
Name = "GetCorpseMapPosition",
|
||||
Type = "Function",
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "corpseX", Type = "number", Nilable = false },
|
||||
{ Name = "corpseY", Type = "number", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetCurrentMapAreaID",
|
||||
Type = "Function",
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "areaID", Type = "number", Nilable = false },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "name", Type = "cstring", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetBestMapForUnit",
|
||||
Type = "Function",
|
||||
Documentation = { "Only works for the player and party members." },
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "unitToken", Type = "UnitToken", Nilable = false },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "uiMapID", Type = "number", Nilable = true },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetBountySetIDForMap",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "uiMapID", Type = "number", Nilable = false },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "bountySetID", Type = "number", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetFallbackWorldMapID",
|
||||
Name = "GetCurrentMapContinent",
|
||||
Type = "Function",
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "uiMapID", Type = "number", Nilable = false },
|
||||
{ Name = "continent", Type = "number", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetMapArtBackgroundAtlas",
|
||||
Name = "GetCurrentMapDungeonLevel",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "uiMapID", Type = "number", Nilable = false },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "atlasName", Type = "textureAtlas", Nilable = false },
|
||||
{ Name = "level", Type = "number", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetMapArtHelpTextPosition",
|
||||
Name = "GetCurrentMapZone",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "uiMapID", Type = "number", Nilable = false },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "position", Type = "MapCanvasPosition", Nilable = false },
|
||||
{ Name = "zone", Type = "number", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetMapArtID",
|
||||
Name = "GetDeathReleasePosition",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "uiMapID", Type = "number", Nilable = false },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "uiMapArtID", Type = "number", Nilable = false },
|
||||
{ Name = "graveyardX", Type = "number", Nilable = false },
|
||||
{ Name = "graveyardY", Type = "number", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetMapArtLayerTextures",
|
||||
Name = "GetMapContinents",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "uiMapID", Type = "number", Nilable = false },
|
||||
{ Name = "layerIndex", Type = "luaIndex", Nilable = false },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "textures", Type = "table", InnerType = "fileID", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetMapArtLayers",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "uiMapID", Type = "number", Nilable = false },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "layerInfo", Type = "table", InnerType = "UiMapLayerInfo", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetMapBannersForMap",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "uiMapID", Type = "number", Nilable = false },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "mapBanners", Type = "table", InnerType = "MapBannerInfo", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetMapChildrenInfo",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "uiMapID", Type = "number", Nilable = false },
|
||||
{ Name = "mapType", Type = "UIMapType", Nilable = true },
|
||||
{ Name = "allDescendants", Type = "bool", Nilable = true },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "info", Type = "table", InnerType = "UiMapDetails", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetMapDisplayInfo",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "uiMapID", Type = "number", Nilable = false },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "hideIcons", Type = "bool", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetMapGroupID",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "uiMapID", Type = "number", Nilable = false },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "uiMapGroupID", Type = "number", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetMapGroupMembersInfo",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "uiMapGroupID", Type = "number", Nilable = false },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "info", Type = "table", InnerType = "UiMapGroupMemberInfo", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetMapHighlightInfoAtPosition",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "uiMapID", Type = "number", Nilable = false },
|
||||
{ Name = "x", Type = "number", Nilable = false },
|
||||
{ Name = "y", Type = "number", Nilable = false },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "fileDataID", Type = "fileID", Nilable = false },
|
||||
{ Name = "atlasID", Type = "textureAtlas", Nilable = false },
|
||||
{ Name = "texturePercentageX", Type = "number", Nilable = false },
|
||||
{ Name = "texturePercentageY", Type = "number", Nilable = false },
|
||||
{ Name = "textureX", Type = "number", Nilable = false },
|
||||
{ Name = "textureY", Type = "number", Nilable = false },
|
||||
{ Name = "scrollChildX", Type = "number", Nilable = false },
|
||||
{ Name = "scrollChildY", Type = "number", Nilable = false },
|
||||
{ Name = "...", Type = "list", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetMapInfo",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "uiMapID", Type = "number", Nilable = false },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "info", Type = "UiMapDetails", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetMapInfoAtPosition",
|
||||
Name = "GetMapLandmarkInfo",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "uiMapID", Type = "number", Nilable = false },
|
||||
{ Name = "index", Type = "luaIndex", Nilable = false },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "name", Type = "string", Nilable = false },
|
||||
{ Name = "description", Type = "string", Nilable = false },
|
||||
{ Name = "textureIndex", Type = "luaIndex", Nilable = false },
|
||||
{ Name = "x", Type = "number", Nilable = false },
|
||||
{ Name = "y", Type = "number", Nilable = false },
|
||||
{ Name = "ignoreZoneMapPositionData", Type = "bool", Nilable = true },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "info", Type = "UiMapDetails", Nilable = false },
|
||||
{ Name = "mapLinkID", Type = "number", Nilable = false },
|
||||
{ Name = "showInBattleMap", Type = "bool", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetMapLevels",
|
||||
Name = "GetMapOverlayInfo",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "uiMapID", Type = "number", Nilable = false },
|
||||
{ Name = "index", Type = "luaIndex", Nilable = false },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "playerMinLevel", Type = "number", Nilable = false },
|
||||
{ Name = "playerMaxLevel", Type = "number", Nilable = false },
|
||||
{ Name = "petMinLevel", Type = "number", Nilable = false, Default = 0 },
|
||||
{ Name = "petMaxLevel", Type = "number", Nilable = false, Default = 0 },
|
||||
{ Name = "textureName", Type = "string", Nilable = false },
|
||||
{ Name = "textureWidth", Type = "number", Nilable = false },
|
||||
{ Name = "textureHeight", Type = "number", Nilable = false },
|
||||
{ Name = "offsetX", Type = "number", Nilable = false },
|
||||
{ Name = "offsetY", Type = "number", Nilable = false },
|
||||
{ Name = "mapPointX", Type = "number", Nilable = false },
|
||||
{ Name = "mapPointY", Type = "number", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetMapLinksForMap",
|
||||
Name = "GetMapZones",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "uiMapID", Type = "number", Nilable = false },
|
||||
{ Name = "continentIndex", Type = "luaIndex", Nilable = false },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "mapLinks", Type = "table", InnerType = "MapLinkInfo", Nilable = false },
|
||||
{ Name = "...", Type = "list", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetMapPosFromWorldPos",
|
||||
Name = "GetNumBattlefieldVehicles",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "continentID", Type = "number", Nilable = false },
|
||||
{ Name = "worldPosition", Type = "vector2", Mixin = "Vector2DMixin", Nilable = false },
|
||||
{ Name = "overrideUiMapID", Type = "number", Nilable = true },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "uiMapID", Type = "number", Nilable = false },
|
||||
{ Name = "mapPosition", Type = "vector2", Mixin = "Vector2DMixin", Nilable = false },
|
||||
{ Name = "numVehicles", Type = "number", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetMapRectOnMap",
|
||||
Name = "GetNumDungeonMapLevels",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "uiMapID", Type = "number", Nilable = false },
|
||||
{ Name = "topUiMapID", Type = "number", Nilable = false },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "minX", Type = "number", Nilable = false },
|
||||
{ Name = "maxX", Type = "number", Nilable = false },
|
||||
{ Name = "minY", Type = "number", Nilable = false },
|
||||
{ Name = "maxY", Type = "number", Nilable = false },
|
||||
{ Name = "numLevels", Type = "number", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetNumMapLandmarks",
|
||||
Type = "Function",
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "numLandmarks", Type = "number", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetNumMapOverlays",
|
||||
Type = "Function",
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "numOverlays", Type = "number", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetPlayerFacing",
|
||||
Type = "Function",
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "facing", Type = "number", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetPlayerMapPosition",
|
||||
Type = "Function",
|
||||
Documentation = { "Only works for the player and party members." },
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "uiMapID", Type = "number", Nilable = false },
|
||||
{ Name = "unitToken", Type = "UnitToken", Nilable = false },
|
||||
{ Name = "unit", Type = "UnitToken", Nilable = false },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "position", Type = "vector2", Mixin = "Vector2DMixin", Nilable = true },
|
||||
{ Name = "unitX", Type = "UnitToken", Nilable = false },
|
||||
{ Name = "unitY", Type = "UnitToken", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "GetWorldPosFromMapPos",
|
||||
Name = "InitWorldMapPing",
|
||||
Type = "Function",
|
||||
|
||||
},
|
||||
{
|
||||
Name = "ProcessMapClick",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "uiMapID", Type = "number", Nilable = false },
|
||||
{ Name = "mapPosition", Type = "vector2", Mixin = "Vector2DMixin", Nilable = false },
|
||||
{ Name = "clickX", Type = "number", Nilable = false },
|
||||
{ Name = "clickY", Type = "number", Nilable = false },
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
Name = "SetDungeonMapLevel",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "level", Type = "number", Nilable = false },
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
Name = "SetMapToCurrentZone",
|
||||
Type = "Function",
|
||||
|
||||
},
|
||||
{
|
||||
Name = "SetMapZoom",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "continentIndex", Type = "luaIndex", Nilable = false },
|
||||
{ Name = "zoneIndex", Type = "luaIndex", Nilable = true },
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
Name = "UpdateMapHighlight",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "cursorX", Type = "number", Nilable = false },
|
||||
{ Name = "cursorY", Type = "number", Nilable = false },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "continentID", Type = "number", Nilable = false },
|
||||
{ Name = "worldPosition", Type = "vector2", Mixin = "Vector2DMixin", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "MapHasArt",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "uiMapID", Type = "number", Nilable = false },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "hasArt", Type = "bool", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "RequestPreloadMap",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "uiMapID", Type = "number", Nilable = false },
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Events =
|
||||
{
|
||||
{
|
||||
Name = "NewWmoChunk",
|
||||
Type = "Event",
|
||||
LiteralName = "NEW_WMO_CHUNK",
|
||||
},
|
||||
{
|
||||
Name = "ZoneChanged",
|
||||
Type = "Event",
|
||||
LiteralName = "ZONE_CHANGED",
|
||||
},
|
||||
{
|
||||
Name = "ZoneChangedIndoors",
|
||||
Type = "Event",
|
||||
LiteralName = "ZONE_CHANGED_INDOORS",
|
||||
},
|
||||
{
|
||||
Name = "ZoneChangedNewArea",
|
||||
Type = "Event",
|
||||
LiteralName = "ZONE_CHANGED_NEW_AREA",
|
||||
},
|
||||
},
|
||||
|
||||
Tables =
|
||||
{
|
||||
{
|
||||
Name = "MapBannerInfo",
|
||||
Type = "Structure",
|
||||
Fields =
|
||||
{
|
||||
{ Name = "areaPoiID", Type = "number", Nilable = false },
|
||||
{ Name = "name", Type = "cstring", Nilable = false },
|
||||
{ Name = "atlasName", Type = "string", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "MapLinkInfo",
|
||||
Type = "Structure",
|
||||
Fields =
|
||||
{
|
||||
{ Name = "areaPoiID", Type = "number", Nilable = false },
|
||||
{ Name = "position", Type = "vector2", Mixin = "Vector2DMixin", Nilable = false },
|
||||
{ Name = "name", Type = "cstring", Nilable = false },
|
||||
{ Name = "atlasName", Type = "string", Nilable = false },
|
||||
{ Name = "linkedUiMapID", Type = "number", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "UiMapDetails",
|
||||
Type = "Structure",
|
||||
Fields =
|
||||
{
|
||||
{ Name = "mapID", Type = "number", Nilable = false },
|
||||
{ Name = "name", Type = "cstring", Nilable = false },
|
||||
{ Name = "mapType", Type = "UIMapType", Nilable = false },
|
||||
{ Name = "parentMapID", Type = "number", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "UiMapGroupMemberInfo",
|
||||
Type = "Structure",
|
||||
Fields =
|
||||
{
|
||||
{ Name = "mapID", Type = "number", Nilable = false },
|
||||
{ Name = "relativeHeightIndex", Type = "number", Nilable = false },
|
||||
{ Name = "name", Type = "cstring", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "UiMapHighlightInfo",
|
||||
Type = "Structure",
|
||||
Fields =
|
||||
{
|
||||
{ Name = "fileDataID", Type = "fileID", Nilable = false },
|
||||
{ Name = "atlasID", Type = "textureAtlas", Nilable = false },
|
||||
{ Name = "texturePercentageX", Type = "number", Nilable = false },
|
||||
{ Name = "texturePercentageY", Type = "number", Nilable = false },
|
||||
{ Name = "name", Type = "string", Nilable = false },
|
||||
{ Name = "fileName", Type = "string", Nilable = false },
|
||||
{ Name = "texCoordX", Type = "number", Nilable = false },
|
||||
{ Name = "texCoordY", Type = "number", Nilable = false },
|
||||
{ Name = "textureX", Type = "number", Nilable = false },
|
||||
{ Name = "textureY", Type = "number", Nilable = false },
|
||||
{ Name = "scrollChildX", Type = "number", Nilable = false },
|
||||
@@ -463,20 +265,65 @@ local Map =
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "UiMapLayerInfo",
|
||||
Type = "Structure",
|
||||
Fields =
|
||||
Name = "ZoomOut",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "layerWidth", Type = "number", Nilable = false },
|
||||
{ Name = "layerHeight", Type = "number", Nilable = false },
|
||||
{ Name = "tileWidth", Type = "number", Nilable = false },
|
||||
{ Name = "tileHeight", Type = "number", Nilable = false },
|
||||
{ Name = "minScale", Type = "number", Nilable = false },
|
||||
{ Name = "maxScale", Type = "number", Nilable = false },
|
||||
{ Name = "additionalZoomSteps", Type = "number", Nilable = false },
|
||||
{ Name = "distance", Type = "number", Nilable = false },
|
||||
},
|
||||
|
||||
},
|
||||
},
|
||||
|
||||
Events =
|
||||
{
|
||||
{
|
||||
Name = "CloseWorldMap",
|
||||
Type = "Event",
|
||||
LiteralName = "CLOSE_WORLD_MAP",
|
||||
},
|
||||
{
|
||||
Name = "MinimapPing",
|
||||
Type = "Event",
|
||||
LiteralName = "MINIMAP_PING",
|
||||
Payload =
|
||||
{
|
||||
{ Name = "unit", Type = "UnitToken", Nilable = false },
|
||||
{ Name = "x", Type = "number", Nilable = false },
|
||||
{ Name = "y", Type = "number", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "MinimapUpdateZoom",
|
||||
Type = "Event",
|
||||
LiteralName = "MINIMAP_UPDATE_ZOOM",
|
||||
},
|
||||
{
|
||||
Name = "TaximapClosed",
|
||||
Type = "Event",
|
||||
LiteralName = "TAXIMAP_CLOSED",
|
||||
},
|
||||
{
|
||||
Name = "TaximapOpened",
|
||||
Type = "Event",
|
||||
LiteralName = "TAXIMAP_OPENED",
|
||||
},
|
||||
{
|
||||
Name = "WorldMapNameUpdate",
|
||||
Type = "Event",
|
||||
LiteralName = "WORLD_MAP_NAME_UPDATE",
|
||||
},
|
||||
{
|
||||
Name = "WorldMapUpdate",
|
||||
Type = "Event",
|
||||
LiteralName = "WORLD_MAP_UPDATE",
|
||||
},
|
||||
},
|
||||
|
||||
Tables =
|
||||
{
|
||||
},
|
||||
};
|
||||
|
||||
APIDocumentation:AddDocumentationTable(Map);
|
||||
APIDocumentation:AddDocumentationTable(Map);
|
||||
|
||||
Reference in New Issue
Block a user