From d32f24f147068e6cbecb31c7f98047f68bc8b58a Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Sun, 21 Jul 2019 19:03:28 -0400 Subject: [PATCH] Embed texture. --- cTexture.java | 13 +++---------- 1 files changed, 3 insertions(+), 10 deletions(-) diff --git a/cTexture.java b/cTexture.java index ed790cb..a839d58 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,6 @@ } String name; - byte[] pigmentstream; - byte[] bumpstream; + BufferedImage pigmenttexture; + BufferedImage bumptexture; } -- Gitblit v1.6.2