lazarus/examples/sprites/spriteexample.lpr
mattias 9a406a352b added sprite example
git-svn-id: trunk@6666 -
2005-01-22 22:26:16 +00:00

16 lines
263 B
ObjectPascal

program SpriteExample;
{$mode objfpc}{$H+}
uses
Interfaces, // this includes the LCL widgetset
Forms
{ add your units here }, PlayGround;
begin
Application.Initialize;
Application.CreateForm(TPlayGroundForm, PlayGroundForm);
Application.Run;
end.