12 lines
387 B
C#
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();
|
|
}
|