lazarus/examples/motiongraphics/motiongraphics.lpr
sekelsenmat 4a93ca7438 Adds an example for testing motion graphics
git-svn-id: trunk@34346 -
2011-12-21 10:57:34 +00:00

22 lines
370 B
ObjectPascal

program motiongraphics;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, mainform
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource := True;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.