more implementations

This commit is contained in:
curtis 2023-04-17 23:36:20 +02:00
parent 006bf11639
commit a1081861c1
1 changed files with 7 additions and 0 deletions

View File

@ -8,6 +8,8 @@ public interface ApiImplementation {
KnockbackProfile getKnockbackProfile(String name); KnockbackProfile getKnockbackProfile(String name);
void setActiveKnockbackProfile(KnockbackProfile knockbackProfile);
class DEFAULT implements ApiImplementation { class DEFAULT implements ApiImplementation {
@Override @Override
@ -20,6 +22,11 @@ public interface ApiImplementation {
return null; return null;
} }
@Override
public void setActiveKnockbackProfile(KnockbackProfile knockbackProfile) {
}
} }
} }