chore: expose api methods we need

This commit is contained in:
bridge 2024-06-25 01:07:11 +02:00
parent 2248f3530c
commit 92682ea60f

View file

@ -2,6 +2,7 @@ package lol.pyr.znpcsplus.api.interaction;
public interface ActionRegistry {
void register(InteractionActionType<?> type);
void unregister(Class<? extends InteractionAction> clazz);
<T extends InteractionAction> T deserialize(String str);
<T extends InteractionAction> String serialize(T action);
}