lang: ru: fix translation Enable Monsters -> Включить монстров
[d2df-editor.git] / src / editor / f_keys.pas
blob1956206535a364656b4ae590734ba8380e10ab13
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 var
14 cbRedKey: TCheckBox;
15 cbGreenKey: TCheckBox;
16 cbBlueKey: TCheckBox;
17 cbRedTeam: TCheckBox;
18 cbBlueTeam: TCheckBox;
19 bOK: TButton;
21 private
22 { Private declarations }
23 public
24 { Public declarations }
25 end;
27 var
28 KeysForm: TKeysForm;
30 implementation
32 {$R *.lfm}
34 initialization
35 KeysForm := TKeysForm.Create(Application);
36 end.