mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-21 03:33:23 +00:00
9 lines
164 B
Java
9 lines
164 B
Java
package com.volmit.iris.util;
|
|
|
|
@SuppressWarnings("hiding")
|
|
@FunctionalInterface
|
|
public interface Consumer4<A, B, C, D>
|
|
{
|
|
public void accept(A a, B b, C c, D d);
|
|
}
|