10 lines
181 B
Java
10 lines
181 B
Java
package com.atsuishio.superbwarfare.entity.projectile;
|
|
|
|
import net.minecraft.world.phys.Vec3;
|
|
|
|
public interface DecoyEntity {
|
|
|
|
String getDecoyUUID();
|
|
|
|
Vec3 getPosition();
|
|
}
|