mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-19 18:55:18 +00:00
9 lines
196 B
Java
9 lines
196 B
Java
package com.volmit.iris.util;
|
|
|
|
@SuppressWarnings("hiding")
|
|
@FunctionalInterface
|
|
public interface Consumer8<A, B, C, D, E, F, G, H>
|
|
{
|
|
public void accept(A a, B b, C c, D d, E e, F f, G g, H h);
|
|
}
|