//============================================================================== // Program: FishTank // // Purpose: "Cloning" version of Fishtank app, demonstrating Abstract Base // classes. // // Copyright: 1997, Palladion Software //============================================================================== program fishtank; uses Forms, ffishtnk in 'ffishtnk.pas' {frmFishtank}, Fish in 'Fish.pas', Bio_Fish in 'Bio_Fish.pas', GoofFish in 'GoofFish.pas', About in 'about.pas' {AboutBox}; {$R *.RES} begin Application.Initialize; Application.CreateForm(TfrmFishtank, frmFishtank); Application.CreateForm(TAboutBox, AboutBox); Application.Run; end.