DEADSOFTWARE

fixed wadeditor; added nosound mode; fixed codepage problems; fixed pointers; cleanup
[d2df-editor.git] / src / editor / f_choosetype.pas
1 unit f_choosetype;
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 TChooseTypeForm = class (TForm)
13 lbTypeSelect: TListBox;
14 bOK: TButton;
16 private
17 { Private declarations }
18 public
19 { Public declarations }
20 end;
22 var
23 ChooseTypeForm: TChooseTypeForm;
25 implementation
27 {$R *.lfm}
29 end.