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