Advertisement
Guest User

Untitled

a guest
Jan 15th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.61 KB | None | 0 0
  1. unit pawnswitch;
  2.  
  3. {$mode objfpc}{$H+}
  4.  
  5. interface
  6.  
  7. uses
  8.   Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, Grids,
  9.   ExtCtrls, StdCtrls;
  10.  
  11. type
  12.  
  13.   { TFormPawnSwitch }
  14.  
  15.   TFormPawnSwitch = class(TForm)
  16.     BtnConfirm: TButton;
  17.     DGridChess: TDrawGrid;
  18.     LblNotice: TLabel;
  19.     procedure DGridChessClick(Sender: TObject);
  20.   private
  21.     { private declarations }
  22.   public
  23.     { public declarations }
  24.   end;
  25.  
  26. var
  27.   FormPawnSwitch: TFormPawnSwitch;
  28.  
  29. implementation
  30.  
  31. {$R *.lfm}
  32.  
  33. { TFormPawnSwitch }
  34.  
  35. procedure TFormPawnSwitch.DGridChessClick(Sender: TObject);
  36. begin
  37.  
  38. end;
  39.  
  40.  
  41. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement