Start ICS header cleanup and finish type matrix.

Change-Id: If65f96f08c958d330862c543d85dd9d4a0f90e06
This commit is contained in:
Jason Sams
2011-04-22 17:05:25 -07:00
committed by Stephen Hines
parent 466e3a22db
commit 6cc888e77e
17 changed files with 253 additions and 0 deletions

View File

@@ -28,6 +28,11 @@ public class Byte2 {
public Byte2() {
}
public Byte2(byte initX, byte initY) {
x = initX;
y = initY;
}
public byte x;
public byte y;
}