Advertisement
Guest User

TexturedModel

a guest
May 9th, 2015
11
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.44 KB | None | 0 0
  1. package net.lesson.graphics.models;
  2.  
  3. import net.lesson.graphics.textures.ModelTexture;
  4.  
  5.  
  6. public class TexturedModel {
  7.  
  8.     private RawModel rawModel;
  9.     private ModelTexture texture;
  10.    
  11.     public TexturedModel(RawModel model, ModelTexture texture){
  12.      
  13.         this.rawModel = model;
  14.         this.texture = texture;
  15.        
  16.     }
  17.  
  18.     public RawModel getRawModel() {
  19.         return rawModel;
  20.     }
  21.  
  22.     public ModelTexture getTexture() {
  23.         return texture;
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement