Skip to content

Commit a8394c1

Browse files
committed
Slot decorations, reimplementing Chatting ChatTabs, changed how ingame huds are done since I want to maintain compatibility with as many mods as possible
1 parent cb181ce commit a8394c1

39 files changed

+585
-1433
lines changed

src/dummy/java/cc/woverflow/chatting/chat/ChatTabs.java

Lines changed: 0 additions & 35 deletions
This file was deleted.

src/dummy/java/cc/woverflow/chatting/config/ChattingConfig.java

Lines changed: 0 additions & 24 deletions
This file was deleted.

src/dummy/java/cc/woverflow/chatting/chat/ChatTab.java renamed to src/dummy/java/org/polyfrost/chatting/chat/ChatTab.java

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,4 @@
1-
/*
2-
* Hytils Reborn - Hypixel focused Quality of Life mod.
3-
* Copyright (C) 2020, 2021, 2022 Polyfrost, Sk1er LLC and contributors
4-
*
5-
* This program is free software: you can redistribute it and/or modify
6-
* it under the terms of the GNU General Public License as published by
7-
* the Free Software Foundation, either version 3 of the License, or
8-
* (at your option) any later version.
9-
*
10-
* This program is distributed in the hope that it will be useful,
11-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
* GNU General Public License for more details.
14-
*
15-
* You should have received a copy of the GNU General Public License
16-
* along with this program. If not, see <https://www.gnu.org/licenses/>.
17-
*/package cc.woverflow.chatting.chat;
1+
package org.polyfrost.chatting.chat;
182

193
import java.util.List;
204

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
package org.polyfrost.chatting.chat;
2+
3+
import java.util.ArrayList;
4+
import java.util.List;
5+
6+
public final class ChatTabs {
7+
public static final ChatTabs INSTANCE = new ChatTabs();
8+
9+
public final ArrayList<ChatTab> getTabs() {
10+
throw new RuntimeException();
11+
}
12+
13+
public final ArrayList<ChatTab> getCurrentTabs() {
14+
return null;
15+
}
16+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package org.polyfrost.chatting.config;
2+
3+
public class ChattingConfig {
4+
public static ChattingConfig INSTANCE = new ChattingConfig();
5+
public boolean getChatTabs() {
6+
throw new RuntimeException();
7+
}
8+
}

src/dummy/java/cc/woverflow/chatting/mixin/GuiNewChatAccessor.java renamed to src/dummy/java/org/polyfrost/chatting/mixin/GuiNewChatAccessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package cc.woverflow.chatting.mixin;
1+
package org.polyfrost.chatting.mixin;
22

33
import java.util.List;
44

0 commit comments

Comments
 (0)