1
0
Fork 0
vt100-games/LadderTP/LADDER.PAS

35 lines
1.0 KiB
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{$C-}
{$I-}
{
Ladder: a reimplementation in Turbo Pascal of the classic
CP/M game "Ladder", originally written by Yahoo Software (not
Yahoo!).
Ladder is an ASCII character based platform arcade game similar to
Donkey Kong. You travel through levels with platforms and ladders
where rocks fall down from the top while you collect statues
before reaching the exit.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
}
PROGRAM ladder;
{$I LADCONST}
{$I LADTYPE}
{$I LADVAR}
{$I LADICONS}
{$I LADUTILS}
{$I LADFIELD}
{$I LADACTOR}
{$I LADPROCS}
{$I LADMAIN}