Added some stuff for the f3 screen

This commit is contained in:
coolGi
2022-05-26 08:48:58 +00:00
parent 030fb3b667
commit e8f79f8bec
@@ -0,0 +1,15 @@
package com.seibel.lod.core.render;
import com.seibel.lod.core.ModInfo;
import java.util.Arrays;
import java.util.List;
public class F3Screen {
public static List<String> f3List = Arrays.asList(
"",
ModInfo.READABLE_NAME + " version: " + ModInfo.VERSION,
""
);
public static boolean renderCustomF3 = false;
}