7 lines
182 B
ObjectPascal
7 lines
182 B
ObjectPascal
|
|
uses GraphABCLinux;
|
|||
|
|
|
|||
|
|
begin
|
|||
|
|
Window.Title := 'Рисование мышью';
|
|||
|
|
OnMouseDown := (x,y,mb) -> MoveTo(x,y);
|
|||
|
|
OnMouseMove := (x,y,mb) -> if mb=1 then LineTo(x,y);
|
|||
|
|
end.
|