Gave layout metadata its own sub-namespace Gave views their own sub-namespace Added view naming convention Moved layout data to a separate folder Moved layout contexts to a separate folder
24 lines
570 B
C#
24 lines
570 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Client.ConsoleForms
|
|
{
|
|
public sealed class ContextManager
|
|
{
|
|
public Context Current { get; private set; }
|
|
|
|
public void LoadContext(Context ctx)
|
|
{
|
|
Current?.OnDestroy();
|
|
Current = ctx;
|
|
Current.OnCreate();
|
|
}
|
|
|
|
public bool Update(ConsoleController.KeyEvent keypress, bool hasKeypress = true)
|
|
=> Current?.Update(keypress, hasKeypress) == true;
|
|
}
|
|
}
|