mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-04-05 23:36:12 +00:00
8 lines
160 B
Java
8 lines
160 B
Java
package com.volmit.iris.util;
|
|
|
|
@SuppressWarnings("hiding")
|
|
@FunctionalInterface
|
|
public interface Consumer4<A, B, C, D> {
|
|
void accept(A a, B b, C c, D d);
|
|
}
|