mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-26 15:33:46 +02:00
18 lines
275 B
ObjectPascal
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.
|
|
|