From 7058eef32e524cae08a7373d8bc1061e373b223c Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Wed, 24 Jul 2019 23:51:25 -0400 Subject: [PATCH] Backlit --- cTexture.java | 17 +++++++---------- 1 files changed, 7 insertions(+), 10 deletions(-) diff --git a/cTexture.java b/cTexture.java index ed790cb..6c5d9f7 100644 --- a/cTexture.java +++ b/cTexture.java @@ -1,12 +1,5 @@ -/* - * To change this template, choose Tools | Templates - * and open the template in the editor. - */ +import java.awt.image.BufferedImage; -/** - * - * @author nbriere - */ public class cTexture implements java.io.Serializable { static final long serialVersionUID = 8278178842384985286L; @@ -38,6 +31,10 @@ } String name; - byte[] pigmentstream; - byte[] bumpstream; + + int pw, ph; + byte[] pigmentdata; + + int bw, bh; + byte[] bumpdata; } -- Gitblit v1.6.2