mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-20 19:22:48 +00:00
8 lines
123 B
Java
8 lines
123 B
Java
package com.volmit.iris.util;
|
|
|
|
@FunctionalInterface
|
|
public interface Observer<T>
|
|
{
|
|
public void onChanged(T from, T to);
|
|
}
|