source: trunk/PixelMap.pas

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