Advertisement
Guest User

ModelTexture

a guest
May 9th, 2015
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. package net.lesson.graphics.textures;
  2.  
  3. public class ModelTexture {
  4.  
  5.     private int textureID;
  6.    
  7.     public ModelTexture(int id){
  8.         this.textureID = id;
  9.        
  10.     }
  11.    
  12.     public int getID(){
  13.         return this.textureID;
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement