9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2026-01-03 06:12:25 +00:00

Decorations!

This commit is contained in:
Daniel Mills
2020-10-27 01:10:19 -04:00
parent a7f8d9126e
commit c4536d789b
10 changed files with 281 additions and 88 deletions

View File

@@ -0,0 +1,8 @@
package com.volmit.iris.util;
@SuppressWarnings("hiding")
@FunctionalInterface
public interface Consumer7<A, B, C, D, E, F, G>
{
public void accept(A a, B b, C c, D d, E e, F f, G g);
}

View File

@@ -0,0 +1,8 @@
package com.volmit.iris.util;
@SuppressWarnings("hiding")
@FunctionalInterface
public interface Consumer8<A, B, C, D, E, F, G, H>
{
public void accept(A a, B b, C c, D d, E e, F f, G g, H h);
}