Wooden material rename, javadoc fix, recipe entries

This commit is contained in:
paulevsGitch 2021-07-24 00:59:22 +03:00
parent 4df19c2193
commit c8d9d9b252
5 changed files with 270 additions and 160 deletions

View file

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