mirror of
https://github.com/OMGeeky/ATCS.git
synced 2025-12-31 16:44:37 +01:00
this is currently done for - items in a droplist - replies - rewards others should follow
6 lines
116 B
Java
6 lines
116 B
Java
package com.gpl.rpg.atcontentstudio.utils;
|
|
|
|
public interface BasicLambdaWithArg<T> {
|
|
public void doIt(T arg);
|
|
}
|