Ryujinx-GtkSharp/gdk/DeviceAxis.custom

25 lines
463 B
Plaintext
Raw Normal View History

// Gdk.Point.DeviceAxis - Gdk DeviceAxis class customizations
//
// Author: Jasper van Putten <Jaspervp@gmx.net>
//
// (c) 2002 Jasper van Putten
//
// This code is inserted after the automatically generated code.
/// <summary>
/// ToString method
/// </summary>
///
/// <remarks>
/// returns a string representation of this DeviceAxis
///
/// </remarks>
public override string ToString ()
{
return "Gdk.DeviceAxis, max:" + this.Max + ",min:" + this.Min;
}