diff options
Diffstat (limited to 'src/main/java/com/thatgravyboat/skyblockhud/api/events/ProfileSwitchedEvent.java')
-rw-r--r-- | src/main/java/com/thatgravyboat/skyblockhud/api/events/ProfileSwitchedEvent.java | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/main/java/com/thatgravyboat/skyblockhud/api/events/ProfileSwitchedEvent.java b/src/main/java/com/thatgravyboat/skyblockhud/api/events/ProfileSwitchedEvent.java index 9402858..e8561c6 100644 --- a/src/main/java/com/thatgravyboat/skyblockhud/api/events/ProfileSwitchedEvent.java +++ b/src/main/java/com/thatgravyboat/skyblockhud/api/events/ProfileSwitchedEvent.java @@ -2,4 +2,12 @@ package com.thatgravyboat.skyblockhud.api.events; import net.minecraftforge.fml.common.eventhandler.Event; -public class ProfileSwitchedEvent extends Event {} +public class ProfileSwitchedEvent extends Event { + + public String profile; + + public ProfileSwitchedEvent(String profile){ + this.profile = profile; + } + +} |