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