net.diversionmc.d3.structure.LevelEnd Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of D3 Show documentation
Show all versions of D3 Show documentation
Diversion Network Data v3 (D3) standard using Parser API.
The newest version!
package net.diversionmc.d3.structure;
import net.diversionmc.parser.expression.CharPiece;
import net.diversionmc.parser.util.FilePointer;
public class LevelEnd extends CharPiece {
public LevelEnd(FilePointer ptr) {
super(ptr, '<');
}
}