mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-13 12:55:05 -05:00
43 lines
587 B
ObjectPascal
43 lines
587 B
ObjectPascal
|
unit scriptmanager;
|
||
|
|
||
|
{$mode objfpc}{$H+}
|
||
|
|
||
|
interface
|
||
|
|
||
|
uses
|
||
|
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
|
||
|
ExtCtrls, ComCtrls;
|
||
|
|
||
|
type
|
||
|
|
||
|
{ TForm1 }
|
||
|
|
||
|
TForm1 = class(TForm)
|
||
|
Button1: TButton;
|
||
|
ImageList1: TImageList;
|
||
|
ListBox1: TListBox;
|
||
|
ListView1: TListView;
|
||
|
TreeView1: TTreeView;
|
||
|
procedure Button1Click(Sender: TObject);
|
||
|
private
|
||
|
{ private declarations }
|
||
|
public
|
||
|
{ public declarations }
|
||
|
end;
|
||
|
|
||
|
var
|
||
|
Form1: TForm1;
|
||
|
|
||
|
implementation
|
||
|
|
||
|
{$R *.lfm}
|
||
|
|
||
|
{ TForm1 }
|
||
|
|
||
|
procedure TForm1.Button1Click(Sender: TObject);
|
||
|
begin
|
||
|
end;
|
||
|
|
||
|
end.
|
||
|
|