0
0
mirror of https://github.com/Wurst-Imperium/Wurst7.git synced 2024-09-19 17:02:13 +02:00

Move all ChatTranslator-related classes to ChatTranslator package

This commit is contained in:
Alexander01998 2024-07-22 17:44:56 +02:00
parent 2bd08f5220
commit dbe6cc78d2
3 changed files with 6 additions and 5 deletions

View File

@ -12,10 +12,10 @@ import net.wurstclient.SearchTags;
import net.wurstclient.events.ChatInputListener;
import net.wurstclient.hack.Hack;
import net.wurstclient.hacks.chattranslator.FilterOwnMessagesSetting;
import net.wurstclient.settings.LanguageSetting;
import net.wurstclient.settings.LanguageSetting.Language;
import net.wurstclient.hacks.chattranslator.GoogleTranslate;
import net.wurstclient.hacks.chattranslator.LanguageSetting;
import net.wurstclient.hacks.chattranslator.LanguageSetting.Language;
import net.wurstclient.util.ChatUtils;
import net.wurstclient.util.GoogleTranslate;
@SearchTags({"chat translator", "ChatTranslate", "chat translate",
"ChatTranslation", "chat translation", "AutoTranslate", "auto translate",

View File

@ -5,7 +5,7 @@
* License, version 3. If a copy of the GPL was not distributed with this
* file, You can obtain one at: https://www.gnu.org/licenses/gpl-3.0.txt
*/
package net.wurstclient.util;
package net.wurstclient.hacks.chattranslator;
import java.io.BufferedReader;
import java.io.IOException;

View File

@ -5,9 +5,10 @@
* License, version 3. If a copy of the GPL was not distributed with this
* file, You can obtain one at: https://www.gnu.org/licenses/gpl-3.0.txt
*/
package net.wurstclient.settings;
package net.wurstclient.hacks.chattranslator;
import net.minecraft.text.Text;
import net.wurstclient.settings.EnumSetting;
public final class LanguageSetting extends EnumSetting<LanguageSetting.Language>
{