This repository has been archived on 2024-10-31. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
LibZontreck/src/main/java/dev/zontreck/libzontreck/events/ProfileUnloadedEvent.java
Aria 00ea4681d8 Add dependency: LibAC
Remove compatibility with luckperms
2023-04-20 22:27:07 -07:00

12 lines
247 B
Java

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;
}
}