|
root / delphi / HADP_Mar1997 / fishtank / clone / fishtank.dpr Created by zope. Last modified 2004-07-15 01:38:16. |
| Filename | fishtank.dpr |
|---|---|
| Size | 699 |
| Content-type | text/plain |
| |
//==============================================================================
// 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.