From 475f8cbdbd96fdbf8f5b216ffebb31a51f25c2f9 Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Mon, 29 Jul 2019 20:08:48 -0400 Subject: [PATCH] Save skybox. --- 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