1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2024-11-29 11:24:19 +01:00
HLMetaModOfficial/installer/UnitSelectModPath.pas
Christian Hammacher 5d39ea83a9 Added MM:S installer to the CVS [MM:S installer is a modifed copy of the AMX Mod X installer]
--HG--
extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%40127
2005-10-07 15:42:18 +00:00

27 lines
456 B
ObjectPascal

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;
cmdOK: TFlatButton;
cmdCancel: TFlatButton;
end;
var
frmSelectModPath: TfrmSelectModPath;
implementation
{$R *.DFM}
end.