| 1234567891011121314151617181920212223242526 |
- {
- *****************************************************************************
- See the file COPYING.modifiedLGPL.txt, included in this distribution,
- for details about the license.
- *****************************************************************************
- Author: Boban Spasic
- }
- unit BCLeaTypes;
- {$mode objfpc}{$H+}
- interface
- uses
- Classes, SysUtils;
- type
- TZStyle = (zsFlat, zsLowered, zsRaised);
- TDotShape = (stSquare, stRound);
- TBoardShadow = (bsNone, bsOwn, bsFrame);
- implementation
- end.
|