Nicefy docs

This commit is contained in:
Applevangelist 2022-04-14 08:54:42 +02:00
parent fc9e237dbb
commit dd957237e2
2 changed files with 4 additions and 12 deletions

View File

@ -2361,7 +2361,7 @@ do -- AI_A2A_DISPATCHER
end end
--- Set flashing player messages on or off --- Set flashing player messages on or off
-- @param #AI_A2G_DISPATCHER self -- @param #AI_A2A_DISPATCHER self
-- @param #boolean onoff Set messages on (true) or off (false) -- @param #boolean onoff Set messages on (true) or off (false)
function AI_A2A_DISPATCHER:SetSendMessages( onoff ) function AI_A2A_DISPATCHER:SetSendMessages( onoff )
self.SetSendPlayerMessages = onoff self.SetSendPlayerMessages = onoff

View File

@ -2370,9 +2370,6 @@ do
-- === -- ===
-- --
-- ### Author: **applevangelist** -- ### Author: **applevangelist**
-- @module Utils.FiFo
-- @image MOOSE.JPG
--- FIFO class. --- FIFO class.
-- @type FIFO -- @type FIFO
@ -2384,7 +2381,6 @@ do
-- @field #table stackbypointer -- @field #table stackbypointer
-- @field #table stackbyid -- @field #table stackbyid
-- @extends Core.Base#BASE -- @extends Core.Base#BASE
--
--- ---
-- @type FIFO.IDEntry -- @type FIFO.IDEntry
@ -2409,7 +2405,7 @@ FIFO = {
-- @return #FIFO self -- @return #FIFO self
function FIFO:New() function FIFO:New()
-- Inherit everything from BASE class. -- Inherit everything from BASE class.
local self=BASE:Inherit(self, BASE:New()) -- #INTEL local self=BASE:Inherit(self, BASE:New())
self.pointer = 0 self.pointer = 0
self.counter = 0 self.counter = 0
self.stackbypointer = {} self.stackbypointer = {}
@ -2600,7 +2596,7 @@ end
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
do do
--- **UTILS** - FiFo Stack. --- **UTILS** - LiFo Stack.
-- --
-- **Main Features:** -- **Main Features:**
-- --
@ -2609,9 +2605,6 @@ do
-- === -- ===
-- --
-- ### Author: **applevangelist** -- ### Author: **applevangelist**
-- @module Utils.LiFo
-- @image MOOSE.JPG
--- LIFO class. --- LIFO class.
-- @type LIFO -- @type LIFO
@ -2623,7 +2616,6 @@ do
-- @field #table stackbypointer -- @field #table stackbypointer
-- @field #table stackbyid -- @field #table stackbyid
-- @extends Core.Base#BASE -- @extends Core.Base#BASE
--
--- ---
-- @type LIFO.IDEntry -- @type LIFO.IDEntry
@ -2648,7 +2640,7 @@ LIFO = {
-- @return #LIFO self -- @return #LIFO self
function LIFO:New() function LIFO:New()
-- Inherit everything from BASE class. -- Inherit everything from BASE class.
local self=BASE:Inherit(self, BASE:New()) -- #INTEL local self=BASE:Inherit(self, BASE:New())
self.pointer = 0 self.pointer = 0
self.counter = 0 self.counter = 0
self.stackbypointer = {} self.stackbypointer = {}