mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
13 lines
323 B
C#
13 lines
323 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Cosmos.HAL
|
|
{
|
|
public abstract class ScanMapBase
|
|
{
|
|
public abstract KeyEvent ConvertScanCode(byte scan, bool ctrl, bool shift, bool alt, bool num, bool caps, bool scroll);
|
|
}
|
|
}
|