This repository has been archived on 2024-02-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
MyPresenter1.0/MyDrawGrid/my_drawgrid.pas
lordwelch daf816e42f idk??????
2015-11-13 20:51:49 -08:00

23 lines
446 B
ObjectPascal

{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit my_drawgrid;
interface
uses
MyDrawGrid, mygrids, resize, myDrawTree, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('MyDrawGrid', @MyDrawGrid.Register);
RegisterUnit('myDrawTree', @myDrawTree.Register);
end;
initialization
RegisterPackage('my_drawgrid', @Register);
end.