mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-06-18 06:41:08 +00:00
Bam
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
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);
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package com.volmit.iris.util;
|
||||
|
||||
@SuppressWarnings("hiding")
|
||||
@FunctionalInterface
|
||||
public interface Consumer5<A, B, C, D, E>
|
||||
{
|
||||
public void accept(A a, B b, C c, D d, E e);
|
||||
}
|
||||
Reference in New Issue
Block a user