forked from MonoGame/MonoGame
-
Notifications
You must be signed in to change notification settings - Fork 5
/
TextInputEventArgs.cs
36 lines (32 loc) · 1.09 KB
/
TextInputEventArgs.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// MonoGame - Copyright (C) MonoGame Foundation, Inc
// This file is subject to the terms and conditions defined in
// file 'LICENSE.txt', which is part of this source code package.
using System;
using Microsoft.Xna.Framework.Input;
namespace Microsoft.Xna.Framework
{
/// <summary>
/// This class is used in the <see cref="GameWindow.TextInput"/> event as <see cref="EventArgs"/>.
/// </summary>
public struct TextInputEventArgs
{
/// <summary>
/// Creates an instance of <see cref="TextInputEventArgs"/>.
/// </summary>
/// <param name="character">Character for the key that was pressed.</param>
/// <param name="key">The pressed key.</param>
public TextInputEventArgs(char character, Keys key = Keys.None)
{
Character = character;
Key = key;
}
/// <summary>
/// The character for the key that was pressed.
/// </summary>
public readonly char Character;
/// <summary>
/// The pressed key.
/// </summary>
public readonly Keys Key;
}
}