19 lines
396 B
C#
19 lines
396 B
C#
using Dashboard.Events;
|
|
using OpenTK.Platform;
|
|
|
|
namespace Dashboard.OpenTK.PAL2
|
|
{
|
|
public static class EventConverter
|
|
{
|
|
public static UiEventArgs? Convert(PlatformEventType type, EventArgs ea)
|
|
{
|
|
switch (type)
|
|
{
|
|
case PlatformEventType.KeyDown:
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
}
|