HyCodeYourTale
classpublicabstractPriority 3

NPixelBuffer

com.hypixel.hytale.builtin.hytalegenerator.newsystem.bufferbundle.buffers.NPixelBuffer

extends NBuffer

3

Methods

3

Public Methods

0

Fields

1

Constructors

Constants

intBUFFER_SIZE_BITS= 3
Vector3iSIZE= new Vector3i(8, 1, 8)

Constructors

public
NPixelBuffer()

Methods

Public Methods (3)

public
T getPixelContent(Vector3i var1)
@Nullable
public
Class<T> getPixelType()
@Nonnull
public
void setPixelContent(Vector3i var1, T var2)

Inheritance

Parent
Current
Interface
Child

Use mouse wheel to zoom, drag to pan. Click nodes to navigate.

Related Classes

Used By

Source Code

package com.hypixel.hytale.builtin.hytalegenerator.newsystem.bufferbundle.buffers;

import com.hypixel.hytale.math.vector.Vector3i;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;

public abstract class NPixelBuffer<T> extends NBuffer {
   public static final int BUFFER_SIZE_BITS = 3;
   public static final Vector3i SIZE = new Vector3i(8, 1, 8);

   public NPixelBuffer() {
   }

   @Nullable
   public abstract T getPixelContent(@Nonnull Vector3i var1);

   public abstract void setPixelContent(@Nonnull Vector3i var1, @Nullable T var2);

   @Nonnull
   public abstract Class<T> getPixelType();
}