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.