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]; } }