org.pixel.commons.model.ImageData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pixel-commons-linux Show documentation
Show all versions of pixel-commons-linux Show documentation
Java 2D Game Framework inspired on the popular XNA framework.
The newest version!
/*
* This software is available under Apache License
* Copyright (c) 2020
*/
package org.pixel.commons.model;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
import java.nio.ByteBuffer;
@Getter
@Builder
@AllArgsConstructor
public class ImageData {
private final ByteBuffer data;
private final int width;
private final int height;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy