Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
207 changes: 0 additions & 207 deletions Intersect.Client.Core/Interface/Game/EscapeMenu.cs

This file was deleted.

5 changes: 3 additions & 2 deletions Intersect.Client.Core/Interface/Game/GameInterface.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
using Intersect.Client.Interface.Game.Inventory;
using Intersect.Client.Interface.Game.Shop;
using Intersect.Client.Interface.Game.Trades;
using Intersect.Client.Interface.Menu;
using Intersect.Client.Interface.Shared;
using Intersect.Client.Networking;
using Intersect.Core;
Expand Down Expand Up @@ -112,11 +113,11 @@ public GameInterface(Canvas canvas) : base(canvas)
public Canvas GameCanvas { get; }

private AnnouncementWindow? _announcementWindow;
private EscapeMenu? _escapeMenu;
private EscapeMenuWindow? _escapeMenu;
private SimplifiedEscapeMenu? _simplifiedEscapeMenu;
private TargetContextMenu? _targetContextMenu;

public EscapeMenu EscapeMenu => _escapeMenu ??= new EscapeMenu(GameCanvas, GetOrCreateSettingsWindow)
public EscapeMenuWindow EscapeMenu => _escapeMenu ??= new EscapeMenuWindow(GameCanvas, GetOrCreateSettingsWindow)
{
IsHidden = true,
};
Expand Down
52 changes: 52 additions & 0 deletions Intersect.Client.Core/Interface/Menu/EscapeMenuWindow.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading