29 lines
515 B
ObjectPascal
Executable File
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.
|