aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/thatgravyboat/skyblockhud/api/events/ProfileJoinedEvent.java
blob: ba24a5d3ef26924a4e1e358a3908c34a213d64c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.thatgravyboat.skyblockhud.api.events;

import net.minecraftforge.fml.common.eventhandler.Event;

public class ProfileJoinedEvent extends Event {

    public String profile;

    public ProfileJoinedEvent(String profile){
        this.profile = profile;
    }
}