Advertisement
Guest User

Untitled

a guest
May 23rd, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.75 KB | None | 0 0
  1. unit UnitGameHelp;
  2.  
  3. interface
  4.  
  5. uses
  6.   Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
  7.   Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ComCtrls,
  8.   Vcl.Imaging.jpeg, Vcl.ExtCtrls;
  9.  
  10. type
  11.   TFormGameHelp = class(TForm)
  12.     pgInformation: TPageControl;
  13.     SheetHelp: TTabSheet;
  14.     SheetStrategy: TTabSheet;
  15.     mmHelp: TMemo;
  16.     ImageStrategy: TImage;
  17.     SheetOptions: TTabSheet;
  18.     mmOptions: TMemo;
  19.     procedure FormClose(Sender: TObject; var Action: TCloseAction);
  20.   private
  21.   public
  22.   end;
  23.  
  24. var
  25.   FormGameHelp: TFormGameHelp;
  26.  
  27. implementation
  28.  
  29. {$R *.dfm}
  30.  
  31. procedure TFormGameHelp.FormClose(Sender: TObject; var Action: TCloseAction);
  32. begin
  33.    FormGameHelp.Hide;
  34. end;
  35.  
  36. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement