Files
mpv.net/src/MpvNet/Global.cs
2023-10-25 09:35:36 +02:00

12 lines
387 B
C#

namespace MpvNet;
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; // deprecated
public static readonly AppClass App = new AppClass();
}