Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package net.lesson.graphics.models;
- import net.lesson.graphics.textures.ModelTexture;
- public class TexturedModel {
- private RawModel rawModel;
- private ModelTexture texture;
- public TexturedModel(RawModel model, ModelTexture texture){
- this.rawModel = model;
- this.texture = texture;
- }
- public RawModel getRawModel() {
- return rawModel;
- }
- public ModelTexture getTexture() {
- return texture;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement