Refactored Biome Config handling (#63)

This commit is contained in:
Frank 2022-01-17 14:06:22 +01:00
parent 3584432a96
commit 05ed11978d
9 changed files with 389 additions and 172 deletions

View file

@ -0,0 +1,6 @@
package ru.bclib.util;
@FunctionalInterface
public interface TriFunction<A, B, C, R> {
R apply(A a, B b, C c);
}