diff options
author | Erich Eckner <git@eckner.net> | 2018-02-20 15:21:44 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-02-20 15:21:44 +0100 |
commit | 0498f8ed914d5d1aa4ab3af8c6106a0979dbbacd (patch) | |
tree | ec88392995f6c693c35028010c0633216fa7aa34 | |
parent | 251c7a620008edb41be211d3f547dcdab1d85544 (diff) | |
download | units-0498f8ed914d5d1aa4ab3af8c6106a0979dbbacd.tar.xz |
lowlevelunit.pas: tIntPointArrayArray new
-rw-r--r-- | lowlevelunit.pas | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lowlevelunit.pas b/lowlevelunit.pas index 5dcf4aa..6a53d08 100644 --- a/lowlevelunit.pas +++ b/lowlevelunit.pas @@ -43,6 +43,8 @@ type tIntPointArray = specialize tArray<tIntPoint>; tInt64PointArray = specialize tArray<tInt64Point>; tBooleanArray = specialize tArray<boolean>; + tIntPointArrayArray = specialize tArray<tIntPointArray>; + pTIntPointArrayArray = ^tIntPointArrayArray; tRGB = record rgbBlue : byte; rgbGreen: byte; |