Files
lazarus-ccr/applications/lazeyes/lazeyes2.lpr

31 lines
476 B
ObjectPascal
Raw Normal View History

{
LazEyes2
Fun application which follows the mouse wherever it goes.
The window has the form of the eyes, which are ellipses.
Version 2: Operates with a custom control
}
program lazeyes2;
{$mode objfpc}{$H+}
uses
Interfaces,
Forms,
lazeyes2painter,
lazeyes2form;
//{$IFDEF WINDOWS}{$R lazeyes2.rc}{$ENDIF}
{$R *.res}
begin
RequireDerivedFormResource := False;
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.