removing useless variables

This commit is contained in:
AlessandroCH
2025-05-25 17:56:33 +02:00
parent 9d62c1783c
commit 8563aeb739

View File

@@ -53,15 +53,10 @@ namespace Campofinale
public static bool showLogs = true; public static bool showLogs = true;
public static bool showWarningLogs = true; public static bool showWarningLogs = true;
public static bool showBodyLogs = false; public static bool showBodyLogs = false;
public static Dispatch dispatch; public static Dispatch? dispatch;
public static ResourceManager resourceManager; public static ConfigFile? config;
public static ConfigFile config;
public static List<CsMsgId> csMessageToHide = new() { CsMsgId.CsMoveObjectMove, CsMsgId.CsBattleOp,CsMsgId.CsPing }; public static List<CsMsgId> csMessageToHide = new() { CsMsgId.CsMoveObjectMove, CsMsgId.CsBattleOp,CsMsgId.CsPing };
public static List<ScMsgId> scMessageToHide = new() { ScMsgId.ScMoveObjectMove, ScMsgId.ScPing }; public static List<ScMsgId> scMessageToHide = new() { ScMsgId.ScMoveObjectMove, ScMsgId.ScPing };
public static ResourceManager GetResources()
{
return resourceManager;
}
public void Start(ConfigFile config) public void Start(ConfigFile config)
{ {
{ {