mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-14 05:15:16 -05:00
535d6f63d7
Nothing much, just committing from my other computer so I can resume work on it here.
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.
|
|
|