12345678910111213141516171819202122 |
- unit LCVectorShapes;
- {$mode objfpc}{$H+}
- interface
- uses
- LCVectorRectShapes, LCVectorPolyShapes, LCVectorTextShapes;
- implementation
- procedure RegisterShapes;
- begin
- //done in used units
- end;
- initialization
- RegisterShapes;
- end.
|