Sketcher2 source code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
460 B

package com.jotuntech.sketcher.common;
public class BitmapTileDiff {
public short diffAlpha[];
public short diffRed[];
public short diffGreen[];
public short diffBlue[];
public BitmapTileDiff() {
diffAlpha = new short[BitmapTile.SIZE * BitmapTile.SIZE];
diffRed = new short[BitmapTile.SIZE * BitmapTile.SIZE];
diffGreen = new short[BitmapTile.SIZE * BitmapTile.SIZE];
diffBlue = new short[BitmapTile.SIZE * BitmapTile.SIZE];
}
}