DEADSOFTWARE

Main: Load and save window position and size
[d2df-editor.git] / src / editor / f_keys.pas
1 unit f_keys;
2
3 {$INCLUDE ../shared/a_modes.inc}
4
5 interface
6
7 uses
8 LCLIntf, LCLType, LMessages, Messages, SysUtils, Variants, Classes,
9 Graphics, Controls, Forms, Dialogs, StdCtrls;
10
11 type
12 TKeysForm = class (TForm)
13 cbRedKey: TCheckBox;
14 cbGreenKey: TCheckBox;
15 cbBlueKey: TCheckBox;
16 cbRedTeam: TCheckBox;
17 cbBlueTeam: TCheckBox;
18 bOK: TButton;
19
20 private
21 { Private declarations }
22 public
23 { Public declarations }
24 end;
25
26 var
27 KeysForm: TKeysForm;
28
29 implementation
30
31 {$R *.lfm}
32
33 end.