close Warning: Can't synchronize with repository "(default)" (No changeset 184 in the repository). Look in the Trac log for more information.

source: tags/1.0.0/Forms/UFormHelp.pas

Last change on this file was 97, checked in by chronos, 9 years ago
  • Added: Simple Help window with basic game description.
File size: 460 bytes
Line 
1unit UFormHelp;
2
3{$mode delphi}
4
5interface
6
7uses
8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls;
9
10type
11
12 { TFormHelp }
13
14 TFormHelp = class(TForm)
15 Memo1: TMemo;
16 procedure FormCreate(Sender: TObject);
17 private
18 { private declarations }
19 public
20 { public declarations }
21 end;
22
23var
24 FormHelp: TFormHelp;
25
26implementation
27
28{$R *.lfm}
29
30{ TFormHelp }
31
32procedure TFormHelp.FormCreate(Sender: TObject);
33begin
34end;
35
36end.
37
Note: See TracBrowser for help on using the repository browser.