mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-21 03:33:23 +00:00
21 lines
256 B
Java
21 lines
256 B
Java
package com.volmit.iris.util;
|
|
|
|
import org.bukkit.util.Vector;
|
|
|
|
public abstract class DOP
|
|
{
|
|
private String type;
|
|
|
|
public DOP(String type)
|
|
{
|
|
this.type = type;
|
|
}
|
|
|
|
public abstract Vector op(Vector v);
|
|
|
|
public String getType()
|
|
{
|
|
return type;
|
|
}
|
|
}
|