lcvectorshapes.pas 240 B

12345678910111213141516171819202122
  1. unit LCVectorShapes;
  2. {$mode objfpc}{$H+}
  3. interface
  4. uses
  5. LCVectorRectShapes, LCVectorPolyShapes, LCVectorTextShapes;
  6. implementation
  7. procedure RegisterShapes;
  8. begin
  9. //done in used units
  10. end;
  11. initialization
  12. RegisterShapes;
  13. end.