コールバックインターフェース作成

This commit is contained in:
r-ca 2024-01-21 15:10:52 +09:00
parent 5cc718e35d
commit 8ad3150f33
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -0,0 +1,5 @@
package one.nem.lacerta.component.viewer;
public interface ItemClickListener {
void onItemClick(String fileName); // DEBUG
}