Unit SandQue

Classes

TQueue - Next element

Functions

Types

PQueueElem
TQueueElem

Constants

Variables


Functions


Types


PQueueElem = ^TQueueElem
A generic queue, used to store sand grains
TQueueElem = record
Item : Pointer;
Next : PQueueElem;
end;
Generic element holding user item

Constants


Variables