source: trunk/Forms/FormScreen.pas

Last change on this file was 2, checked in by chronos, 14 months ago
  • Added: Initial development version.
File size: 277 bytes
Line 
1unit FormScreen;
2
3interface
4
5uses
6 Classes, SysUtils, Forms, Controls, Graphics, Dialogs, ExtCtrls;
7
8type
9
10 { TFormScreen }
11
12 TFormScreen = class(TForm)
13 PaintBox1: TPaintBox;
14 private
15
16 public
17
18 end;
19
20var
21 FormScreen: TFormScreen;
22
23implementation
24
25{$R *.lfm}
26
27end.
28
Note: See TracBrowser for help on using the repository browser.