DEADSOFTWARE

fixed wadeditor; added nosound mode; fixed codepage problems; fixed pointers; cleanup
[d2df-editor.git] / src / editor / f_activationtype.pas
1 unit f_activationtype;
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 TActivationTypeForm = class (TForm)
13 cbPlayerCollide: TCheckBox;
14 cbMonsterCollide: TCheckBox;
15 cbPlayerPress: TCheckBox;
16 cbMonsterPress: TCheckBox;
17 cbShot: TCheckBox;
18 cbNoMonster: TCheckBox;
19 bOK: TButton;
21 private
22 { Private declarations }
23 public
24 { Public declarations }
25 end;
27 var
28 ActivationTypeForm: TActivationTypeForm;
30 implementation
32 {$R *.lfm}
34 end.