DEADSOFTWARE

fixed wadeditor; added nosound mode; fixed codepage problems; fixed pointers; cleanup
[d2df-editor.git] / src / editor / f_keys.pas
1 unit f_keys;
3 {$INCLUDE ../shared/a_modes.inc}
5 interface
7 uses
8 LCLIntf, LCLType, LMessages, Messages, SysUtils, Variants, Classes,
9 Graphics, Controls, Forms, Dialogs, StdCtrls;
11 type
12 TKeysForm = class (TForm)
13 cbRedKey: TCheckBox;
14 cbGreenKey: TCheckBox;
15 cbBlueKey: TCheckBox;
16 cbRedTeam: TCheckBox;
17 cbBlueTeam: TCheckBox;
18 bOK: TButton;
20 private
21 { Private declarations }
22 public
23 { Public declarations }
24 end;
26 var
27 KeysForm: TKeysForm;
29 implementation
31 {$R *.lfm}
33 end.