This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
Gestus/src/main/java/com/thebrokenrail/gestus/util/ServerPlayerEntityExtension.java
TheBrokenRail a967ba2952
All checks were successful
Gestus/pipeline/head This commit looks good
1.0.0
2020-08-11 17:00:26 -04:00

10 lines
243 B
Java

package com.thebrokenrail.gestus.util;
import com.thebrokenrail.gestus.entity.FakePlayerEntity;
import net.minecraft.util.math.Vec3d;
public interface ServerPlayerEntityExtension {
FakePlayerEntity getShadow();
Vec3d getLastPos();
}