mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-27 22:22:32 +00:00
58 lines
972 B
C#
58 lines
972 B
C#
|
using System;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Globalization;
|
||
|
using System.Text;
|
||
|
using System.Windows.Forms;
|
||
|
|
||
|
namespace CodeImp.DoomBuilder.Controls
|
||
|
{
|
||
|
internal struct KeyControl
|
||
|
{
|
||
|
#region ================== Variables
|
||
|
|
||
|
public int key;
|
||
|
public string name;
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
#region ================== Constructor / Disposer
|
||
|
|
||
|
// Constructor
|
||
|
public KeyControl(Keys key, string name)
|
||
|
{
|
||
|
// Initialize
|
||
|
this.key = (int)key;
|
||
|
this.name = name;
|
||
|
}
|
||
|
|
||
|
// Constructor
|
||
|
public KeyControl(SpecialKeys key, string name)
|
||
|
{
|
||
|
// Initialize
|
||
|
this.key = (int)key;
|
||
|
this.name = name;
|
||
|
}
|
||
|
|
||
|
// Constructor
|
||
|
public KeyControl(int key, string name)
|
||
|
{
|
||
|
// Initialize
|
||
|
this.key = key;
|
||
|
this.name = name;
|
||
|
}
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
#region ================== Methods
|
||
|
|
||
|
// Returns name
|
||
|
public override string ToString()
|
||
|
{
|
||
|
return name;
|
||
|
}
|
||
|
|
||
|
#endregion
|
||
|
}
|
||
|
}
|