extract collapsibleItemList with buttons into method

this is currently done for
- items in a droplist
- replies
- rewards

others should follow
This commit is contained in:
OMGeeky
2025-06-01 22:12:31 +02:00
parent e1e85d7a90
commit 355bb2bc54
6 changed files with 330 additions and 159 deletions

View File

@@ -0,0 +1,5 @@
package com.gpl.rpg.atcontentstudio.utils;
public interface BasicLambdaWithArg<T> {
public void doIt(T arg);
}