You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1765 8e941d3f-bd1b-0410-a28a-d453659cc2b4
31 lines
476 B
ObjectPascal
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.
|
|
|