amxmodx/installer/installer/UnitSelectModPath.pas
2005-07-21 23:08:23 +00:00

29 lines
515 B
ObjectPascal
Executable File

unit UnitSelectModPath;
interface
uses
SysUtils, Windows, Messages, Classes, Graphics, Controls,
StdCtrls, ExtCtrls, Forms, FileCtrl, ComCtrls, ShellCtrls,
TFlatComboBoxUnit, TFlatButtonUnit;
type
TfrmSelectModPath = class(TForm)
pnlDesign: TPanel;
lblInfo: TLabel;
trvDirectory: TShellTreeView;
lblGameAddon: TLabel;
cboGameAddon: TFlatComboBox;
cmdOK: TFlatButton;
cmdCancel: TFlatButton;
end;
var
frmSelectModPath: TfrmSelectModPath;
implementation
{$R *.DFM}
end.