net.diversionmc.d3.operation.IndexOpen 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.operation;
import net.diversionmc.parser.expression.CharPiece;
import net.diversionmc.parser.util.FilePointer;
public class IndexOpen extends CharPiece {
public IndexOpen(FilePointer ptr) {
super(ptr, '[');
}
}