Files
lazarus-ccr/applications/lazeyes/lazeyes2.lpr
sekelsenmat 4f7d5dd9af lazeyes: Adapts the region code for Gtk2
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1765 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2011-07-28 12:20:06 +00:00

31 lines
476 B
ObjectPascal

{
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.