Skip to content

Commit

Permalink
feat(api): IHProjectile
Browse files Browse the repository at this point in the history
  • Loading branch information
WakelessSloth56 committed Sep 16, 2022
1 parent 7867177 commit 18fd871
Showing 1 changed file with 13 additions and 0 deletions.
@@ -0,0 +1,13 @@
package org.auioc.mcmod.arnicalib.api.game.entity;

import javax.annotation.Nullable;
import net.minecraft.world.phys.Vec3;

public interface IHProjectile {

@Nullable
default Vec3 getShootingPosition() {
return null;
}

}

0 comments on commit 18fd871

Please sign in to comment.