Advertisement
Guest User

Untitled

a guest
Jan 15th, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.77 KB | None | 0 0
  1. unit customgame;
  2.  
  3. {$mode objfpc}{$H+}
  4.  
  5. interface
  6.  
  7. uses
  8.   Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ExtCtrls,
  9.   StdCtrls, Grids;
  10.  
  11. type
  12.  
  13.   { TFormCustomGame }
  14.  
  15.   TFormCustomGame = class(TForm)
  16.     DGridPreview: TDrawGrid;
  17.     BtnStart: TButton;
  18.     DGridP2Pieces: TDrawGrid;
  19.     LblGridSize: TLabel;
  20.     ComboP1Colour: TComboBox;
  21.     ComboGridSize: TComboBox;
  22.     ComboP2Colour: TComboBox;
  23.     DGridP1Pieces: TDrawGrid;
  24.     LblP1PieceColour: TLabel;
  25.     LblP2PieceColour: TLabel;
  26.     LblEdtP1Name: TLabeledEdit;
  27.     LblEdtP2Name: TLabeledEdit;
  28.  
  29.  
  30.   private
  31.     { private declarations }
  32.   public
  33.     { public declarations }
  34.   end;
  35.  
  36. var
  37.   FormCustomGame: TFormCustomGame;
  38.  
  39. implementation
  40.  
  41. {$R *.lfm}
  42.  
  43. { TFormCustomGame }
  44.  
  45.  
  46. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement