mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-19 10:43:14 +00:00
8 lines
176 B
Java
8 lines
176 B
Java
package com.volmit.iris.util;
|
|
|
|
@SuppressWarnings("hiding")
|
|
@FunctionalInterface
|
|
public interface Consumer6<A, B, C, D, E, F> {
|
|
void accept(A a, B b, C c, D d, E e, F f);
|
|
}
|