32 lines
530 B
Java
32 lines
530 B
Java
package models;
|
|
|
|
import 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 void setRawModel(RawModel rawModel) {
|
|
this.rawModel = rawModel;
|
|
}
|
|
|
|
public ModelTexture getTexture() {
|
|
return texture;
|
|
}
|
|
|
|
public void setTexture(ModelTexture texture) {
|
|
this.texture = texture;
|
|
}
|
|
|
|
}
|