More kb options

This commit is contained in:
curtis 2023-05-31 21:47:03 +02:00
parent be065961ba
commit 2ebbd91a79
1 changed files with 11 additions and 2 deletions

View File

@ -4,9 +4,13 @@ public interface KnockbackProfile {
String getName();
double getFriction();
double getHorizontalFriction();
double getVertical();
double getVerticalFriction();
double getVerticalMin();
double getVerticalMax();
double getHorizontal();
@ -40,6 +44,7 @@ public interface KnockbackProfile {
Integer getPotionTicks();
void setName(String name);
void setFriction(double friction);
@ -78,4 +83,8 @@ public interface KnockbackProfile {
void setPotionTicks(Integer potionTicks);
void setVerticalMin(double verticalMin);
void setVerticalMax(double verticalMax);
}