mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-04-30 07:04:27 +02:00
11 lines
189 B
C#
11 lines
189 B
C#
namespace Starpelly.OperatingSystem
|
|
{
|
|
public class MacOS : IOperatingSystem
|
|
{
|
|
public void ChangeWindowTitle(string newTitle)
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|
|
}
|