Interface for classes with gui text to change language.

This commit is contained in:
WickedJack99
2023-11-01 20:54:36 +01:00
parent 8dd6074827
commit f2892eddbf

View File

@@ -0,0 +1,12 @@
/**
* @author Aaron Moser
* @date 31.10.2023
*/
package gui.src.interfaces;
import gui.src.constants.GUIConstants.Languages;
public interface Translateable {
public void changeLanguage(Languages language);
}