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.
GulliverReloaded/src/main/java/com/thebrokenrail/gulliverreloaded/ScaledEntity.java
TheBrokenRail 2a3223a873
All checks were successful
Gulliver Reloaded/pipeline/head This commit looks good
1.0
Initial Release
2020-03-26 23:05:28 -04:00

10 lines
216 B
Java

package com.thebrokenrail.gulliverreloaded;
import net.minecraft.entity.EntityDimensions;
public interface ScaledEntity {
float getScale();
EntityDimensions scaleDimensions(EntityDimensions dimensions);
}