Legacy:ListItem

From Unreal Wiki, The Unreal Engine Documentation Site
Revision as of 03:59, 14 April 2002 by Wormbo (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Object >> ListItem

A simple two-way linked list used by the remote server administration (UTServerAdmin) to build lists of maps, mutators, etc.

Properties

ListItem Next
The next item in the list.
ListItem Prev
The previous item in the list.
string Tag
string Data
bool bJustMoved

Functions

function AddElement(ListItem NewElement)
function AddSortedElement(out ListItem FirstElement, ListItem NewElement)
function ListItem FindItem(String SearchData)
function ListItem DeleteElement(out ListItem First, optional String SearchData)
function MoveElementUp(out ListItem First, ListItem MoveItem, out int Count)
function MoveElementDown(out ListItem First, ListItem MoveItem, out int Count)
function RunTest()
This function is obviously used for testing.