1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-08-13 16:53:59 -04:00
Simba/Projects/ScriptManager/project1.lpr

21 lines
309 B
ObjectPascal
Raw Normal View History

program project1;
{$mode objfpc}{$H+}
uses
2010-09-12 08:27:42 -04:00
{$IFDEF UNIX}
cthreads, cmem,
{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, scriptmanager
{ you can add units after this };
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.