HeavenStudioPlus/Assets/Plugins/Starpelly/OperatingSystem/MacOS.cs

11 lines
189 B
C#

namespace Starpelly.OperatingSystem
{
public class MacOS : IOperatingSystem
{
public void ChangeWindowTitle(string newTitle)
{
throw new System.NotImplementedException();
}
}
}