source:
trunk/PixelMap.pas
Last change on this file was 73, checked in by , 8 months ago | |
---|---|
File size: 166 bytes |
Line | |
---|---|
1 | unit PixelMap; |
2 | |
3 | {$mode objfpc}{$H+} |
4 | |
5 | interface |
6 | |
7 | uses |
8 | Classes, SysUtils; |
9 | |
10 | type |
11 | TPixelMap = class |
12 | Pixels: array of array of Byte; |
13 | end; |
14 | |
15 | implementation |
16 | |
17 | end. |
18 |
Note:
See TracBrowser
for help on using the repository browser.