2
0

bcleatypes.pas 516 B

1234567891011121314151617181920212223242526
  1. {
  2. *****************************************************************************
  3. See the file COPYING.modifiedLGPL.txt, included in this distribution,
  4. for details about the license.
  5. *****************************************************************************
  6. Author: Boban Spasic
  7. }
  8. unit BCLeaTypes;
  9. {$mode objfpc}{$H+}
  10. interface
  11. uses
  12. Classes, SysUtils;
  13. type
  14. TZStyle = (zsFlat, zsLowered, zsRaised);
  15. TDotShape = (stSquare, stRound);
  16. TBoardShadow = (bsNone, bsOwn, bsFrame);
  17. implementation
  18. end.