EventLoop V1

This commit is contained in:
2023-08-08 12:49:15 +02:00
parent 7b8764ac16
commit 52536b569d
21 changed files with 479 additions and 68 deletions

View File

@@ -0,0 +1,12 @@
namespace TerminalUI;
public class ApplicationContext : IApplicationContext
{
public IEventLoop EventLoop { get; init; }
public bool IsRunning { get; set; }
public ApplicationContext()
{
EventLoop = new EventLoop(this);
}
}