Files
mpv.net/src/Misc/Global.cs
2021-05-23 19:30:21 +02:00

14 lines
277 B
C#

using System;
namespace mpvnet
{
public class Global
{
public static string BR = Environment.NewLine;
public static string BR2 = Environment.NewLine + Environment.NewLine;
public static CorePlayer Core { get; } = new CorePlayer();
}
}