conf editor bug fix

This commit is contained in:
stax76
2023-10-25 09:35:36 +02:00
parent 0148a71281
commit 37320fb975
5 changed files with 29 additions and 29 deletions

View File

@@ -6,6 +6,6 @@ public static class Global
public static readonly string BR = Environment.NewLine;
public static readonly string BR2 = Environment.NewLine + Environment.NewLine;
public static readonly MainPlayer Player = new MainPlayer();
public static readonly MainPlayer Core = Player; // backward compatibility
public static readonly MainPlayer Core = Player; // deprecated
public static readonly AppClass App = new AppClass();
}