lazarus/examples/sprites/spriteexample.lpr

18 lines
275 B
ObjectPascal

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