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