13 lines
324 B
Java
13 lines
324 B
Java
package dev.zontreck.libzontreck.events;
|
|
|
|
import dev.zontreck.libzontreck.profiles.Profile;
|
|
import net.minecraftforge.eventbus.api.Event;
|
|
|
|
public class ProfileCreatedEvent extends Event
|
|
{
|
|
public String playerID;
|
|
public ProfileCreatedEvent(Profile newProfile)
|
|
{
|
|
playerID = newProfile.user_id;
|
|
}
|
|
}
|