mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-04-05 23:36:12 +00:00
18 lines
287 B
Java
18 lines
287 B
Java
package com.volmit.iris.util;
|
|
|
|
import org.bukkit.util.Vector;
|
|
|
|
public abstract class DOP {
|
|
private final String type;
|
|
|
|
public DOP(String type) {
|
|
this.type = type;
|
|
}
|
|
|
|
public abstract Vector op(Vector v);
|
|
|
|
public String getType() {
|
|
return type;
|
|
}
|
|
}
|