pureikyubu/RnD/ManagedConsoleDemo/TestConsole.cs
ogamespec 476dcf7213 Managed Console
I think its done
2020-03-04 14:42:45 +03:00

21 lines
524 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ManagedConsoleDemo
{
class TestConsole : ManagedConsole.Console
{
public override void OnKeyInput(KeyInfo key)
{
PrintAt(ManagedConsole.ColorCode.NORM, 10, 10, " ");
PrintAt(ManagedConsole.ColorCode.NORM, 10, 10, key.KeyCode.ToString());
Invalidate();
base.OnKeyInput(key);
}
}
}