22 lines
362 B
ObjectPascal

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