//============================================================================== // Program: FishTank // // Purpose: RAD prototype for Fishtank demo app (no ABC's or other OO tech- // niques used in this version, beyond "normal" Delphi component- // based development.) // // Copyright: 1997, Palladion Software //============================================================================== program fishtank; uses Forms, ffishtnk in 'ffishtnk.pas' {frmFishtank}, About in 'about.pas' {AboutBox}; {$R *.RES} begin Application.Initialize; Application.CreateForm(TfrmFishtank, frmFishtank); Application.CreateForm(TAboutBox, AboutBox); Application.Run; end.