pascalabcnet/_Presentations/2015 New Features/Programs/19_Gra3.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

11 lines
148 B
ObjectPascal

uses GraphABC;
procedure MouseMove(x,y,mb: integer);
begin
if mb=1 then
Circle(x,y,Random(5,25))
end;
begin
OnMouseMove := MouseMove;
end.