Gered
10e057953e
Contains changes from "gwen-dotnet" removing dependancies on Windows, which ultimately means certain features (e.g. file load/save dialogs) do not work. Those classes still exist, but the code has been commented out.
30 lines
458 B
C#
30 lines
458 B
C#
using System;
|
|
|
|
namespace Gwen
|
|
{
|
|
/// <summary>
|
|
/// Key constants.
|
|
/// </summary>
|
|
public enum Key
|
|
{
|
|
Invalid = 0,
|
|
Return = 1,
|
|
Backspace = 2,
|
|
Delete = 3,
|
|
Left = 4,
|
|
Right = 5,
|
|
Shift = 6,
|
|
Tab = 7,
|
|
Space = 8,
|
|
Home = 9,
|
|
End = 10,
|
|
Control = 11,
|
|
Up = 12,
|
|
Down = 13,
|
|
Escape = 14,
|
|
Alt = 15,
|
|
|
|
Count = 16
|
|
}
|
|
}
|