home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 25: Programming / pc_actual_25.iso / Delphi / CheesboardComponent / example / Player.dpr < prev    next >
Encoding:
Text File  |  1998-05-13  |  226 b   |  15 lines

  1. program Player;
  2.  
  3. uses
  4.   Forms,
  5.   ChessPrg in 'ChessPrg.pas' {Form1},
  6.   ChessBrd in '..\chessbrd.pas';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.Run;
  14. end.
  15.