mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-19 18:55:18 +00:00
7 lines
99 B
Java
7 lines
99 B
Java
package com.volmit.iris.util;
|
|
|
|
public interface Supplier2<T, TT>
|
|
{
|
|
public void get(T t, TT tt);
|
|
}
|