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