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

com.github.bloodshura.ignitium.ntv.struct.MutableStructField Maven / Gradle / Ivy

The newest version!
package com.github.bloodshura.ignitium.ntv.struct;

import javax.annotation.Nonnull;

public abstract class MutableStructField extends StructField {
	public MutableStructField(@Nonnull MappedStruct struct, int offset, int size) {
		super(struct, offset, size);
	}

	public final void setValue(@Nonnull E value) {
		write(value);
	}

	protected abstract void write(@Nonnull E value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy