Skip to content

Commit

Permalink
Add SetTitle to BasicGameWindow
Browse files Browse the repository at this point in the history
  • Loading branch information
ddevault committed Oct 18, 2016
1 parent 89cc16b commit 1d9c250
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions osu.Framework/Platform/BasicGameWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ public BasicGameWindow(int width, int height) : base(width, height)
Cursor = MouseCursor.Empty;
}

public void SetTitle(string title)
{
Title = title;
}

/// <summary>
/// Return value decides whether we should intercept and cancel this exit (if possible).
/// </summary>
Expand Down

0 comments on commit 1d9c250

Please sign in to comment.