mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-19 02:36:59 +00:00
7 lines
109 B
Java
7 lines
109 B
Java
package com.volmit.iris.util;
|
|
|
|
public interface NastyFunction<T, R>
|
|
{
|
|
public R run(T t) throws Throwable;
|
|
}
|