mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-21 03:33:23 +00:00
7 lines
101 B
Java
7 lines
101 B
Java
package com.volmit.iris.util;
|
|
|
|
public interface NastyFuture<R>
|
|
{
|
|
public R run() throws Throwable;
|
|
}
|