Files
ATCS/src/com/gpl/rpg/atcontentstudio/utils/BasicLambdaWithArg.java
OMGeeky 355bb2bc54 extract collapsibleItemList with buttons into method
this is currently done for
- items in a droplist
- replies
- rewards

others should follow
2025-06-21 17:59:59 +02:00

6 lines
116 B
Java

package com.gpl.rpg.atcontentstudio.utils;
public interface BasicLambdaWithArg<T> {
public void doIt(T arg);
}