Skip to content

Commit

Permalink
chore: added class TextFieldFocusChangeEvent
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonHK committed Aug 7, 2020
1 parent 1206ec7 commit 1225315
Showing 1 changed file with 20 additions and 0 deletions.
@@ -0,0 +1,20 @@
package net.jasonhk.minecraft.mods.torvaldsinput.gui.events;

import net.minecraftforge.eventbus.api.Event;

import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.ToString;

@EqualsAndHashCode(callSuper = false)
@ToString
public class TextFieldFocusChangeEvent extends Event
{
@Getter
private final boolean focused;

public TextFieldFocusChangeEvent(boolean focused)
{
this.focused = focused;
}
}

0 comments on commit 1225315

Please sign in to comment.