20 lines
308 B
Java
20 lines
308 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package net.minecraft.client.gui.font;
|
|
|
|
import net.minecraft.network.chat.Style;
|
|
|
|
public interface ActiveArea {
|
|
public Style style();
|
|
|
|
public float activeLeft();
|
|
|
|
public float activeTop();
|
|
|
|
public float activeRight();
|
|
|
|
public float activeBottom();
|
|
}
|
|
|