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