This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
gwen-dotnet/Gwen/Key.cs
Gered 10e057953e initial commit
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.
2013-03-28 18:47:01 -04:00

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
}
}