mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-06-23 07:06:10 -07:00
212a1c292d
Adding complete implementation of 02 Amazing in Object-Pascal
18 lines
214 B
ObjectPascal
18 lines
214 B
ObjectPascal
program amazing;
|
|
|
|
{$IFDEF FPC}
|
|
{$mode ObjFPC}{$H+}
|
|
{$ENDIF}
|
|
|
|
uses
|
|
AmazingApplication, maze, Room;
|
|
|
|
var
|
|
AmazingApp: TAmazingApplication;
|
|
|
|
begin
|
|
AmazingApp:= TAmazingApplication.Create;
|
|
AmazingApp.Run;
|
|
end.
|
|
|