blob: 8b81a501172807e5393aed6cf71686dc3aee0053 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package cc.woverflow.chatting.mixin;
import net.minecraft.client.gui.ChatLine;
import net.minecraft.client.gui.GuiNewChat;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.gen.Accessor;
import java.util.List;
@Mixin(GuiNewChat.class)
public interface GuiNewChatAccessor {
@Accessor
List<ChatLine> getDrawnChatLines();
@Accessor
int getScrollPos();
}
|