blob: d4fd524a62b6e3e402f8a972fe7efa6c1fdbd5dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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
List<ChatLine> getChatLines();
@Accessor
int getScrollPos();
}
|