//
// InputAction.cs
//
// Copyright (C) 2019 OpenTK
//
// This software may be modified and distributed under the terms
// of the MIT license. See the LICENSE file for details.
//
namespace OpenToolkit.GraphicsLibraryFramework
{
///
/// Defines event information for
/// or .
///
public enum InputAction : byte
{
///
/// The key or mouse button was released.
///
Release = 0,
///
/// The key or mouse button was pressed.
///
Press = 1,
///
/// The key was held down until it repeated.
///
Repeat = 2
}
}