Move profiles into libzontreck, and create relevant events

This commit is contained in:
Aria 2023-02-27 14:41:33 -07:00
parent 453d5642b7
commit 6789b0f329
8 changed files with 231 additions and 2 deletions

View file

@ -0,0 +1,12 @@
package dev.zontreck.libzontreck.events;
import net.minecraftforge.eventbus.api.Event;
public class ProfileUnloadedEvent extends Event
{
public String user_id;
public ProfileUnloadedEvent(String id)
{
user_id=id;
}
}