All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.io.github.seba244c.icespire.utils.IMG Maven / Gradle / Ivy

package io.github.seba244c.icespire.utils;

import java.nio.ByteBuffer;

/**
 * A class purely for storing data
 * @author Sebsa
 * @since 1.0.2 
 * @deprecated
 */
public class IMG {
	/**
	 * Image width
	 */
	public int w;
	/**
	 * Image height
	 */
	public int h;
	/**
	 * Image pixels
	 */
	public ByteBuffer image;
	
	/**
	 * @param image Image pixels
	 * @param width Image width
	 * @param height Image height
	 */
	public IMG(ByteBuffer image, int width, int height) {
		this.image = image;
		this.w = width;
		this.h = height;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy