Commented out to remove warnings until actual implementation.

This commit is contained in:
the_fiddler 2008-11-03 22:15:56 +00:00
parent 98aec7ce1c
commit f4700cb676

View file

@ -5,6 +5,7 @@ using OpenTK.Math;
namespace OpenTK.Input namespace OpenTK.Input
{ {
#if false
/// <summary> /// <summary>
/// Represents a joystick device and provides methods to query its state. /// Represents a joystick device and provides methods to query its state.
/// </summary> /// </summary>
@ -13,7 +14,7 @@ namespace OpenTK.Input
string description; string description;
Vector2[] axis_position; Vector2[] axis_position;
#region --- IInputDevice Members --- #region --- IInputDevice Members ---
/// <summary> /// <summary>
/// Gets a string describing this JoystickDevice. /// Gets a string describing this JoystickDevice.
@ -34,7 +35,7 @@ namespace OpenTK.Input
#endregion #endregion
#region --- Public Methods --- #region --- Public Methods ---
//public Vector2 Axis1 //public Vector2 Axis1
//{ //{
@ -44,4 +45,5 @@ namespace OpenTK.Input
#endregion #endregion
} }
#endif
} }