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();
|
||
|
}
|
||
|
}
|
||
|
}
|