chore: expose api methods we need
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
bridge 2024-06-25 01:07:11 +02:00
parent 83fdb62a24
commit 1b0ab5e455

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