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

org.bukkit.craftbukkit.map.RenderData Maven / Gradle / Ivy

package org.bukkit.craftbukkit.map;

import org.bukkit.map.MapCursor;

import java.util.ArrayList;

public class RenderData {

  public final byte[] buffer;
  public final ArrayList cursors;

  public RenderData() {
    this.buffer = new byte[128 * 128];
    this.cursors = new ArrayList();
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy