Palladion Software
user icon Guest

Created by zope. Last modified 2004-07-15 05:38:16.

File Properties

Filename fishtank.dpr
Size 699
Content-type text/plain

Download File

Download

//==============================================================================
// 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.