aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/dev/figboot/cuberender/state/Texture.java
blob: 843638d4c1835f59c70b8f2c8d1a461393056412 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package dev.figboot.cuberender.state;

import java.awt.image.BufferedImage;

public class Texture {
    public final BufferedImage image;
    public transient int width, height;

    public Texture(BufferedImage image) {
        this.image = image;
        this.width = image.getWidth();
        this.height = image.getHeight();
    }
}