mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 11:25:27 +00:00
Restore removed using statements from minimal classes.
This commit is contained in:
parent
4f562820f4
commit
41d4bef7e2
|
@ -23,9 +23,11 @@
|
||||||
// OTHER DEALINGS IN THE SOFTWARE.
|
// OTHER DEALINGS IN THE SOFTWARE.
|
||||||
//
|
//
|
||||||
|
|
||||||
|
#if MINIMAL
|
||||||
|
using System;
|
||||||
|
|
||||||
namespace OpenTK
|
namespace OpenTK
|
||||||
{
|
{
|
||||||
#if MINIMAL
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Defines a point on a two-dimensional plane.
|
/// Defines a point on a two-dimensional plane.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -167,5 +169,5 @@ namespace OpenTK
|
||||||
return X == other.X && Y == other.Y;
|
return X == other.X && Y == other.Y;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
#endif
|
|
@ -23,9 +23,11 @@
|
||||||
// OTHER DEALINGS IN THE SOFTWARE.
|
// OTHER DEALINGS IN THE SOFTWARE.
|
||||||
//
|
//
|
||||||
|
|
||||||
|
#if MINIMAL
|
||||||
|
using System;
|
||||||
|
|
||||||
namespace OpenTK
|
namespace OpenTK
|
||||||
{
|
{
|
||||||
#if MINIMAL
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Represents a rectangular region on a two-dimensional plane.
|
/// Represents a rectangular region on a two-dimensional plane.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -284,5 +286,5 @@ namespace OpenTK
|
||||||
Size.Equals(other.Size);
|
Size.Equals(other.Size);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
|
@ -23,9 +23,11 @@
|
||||||
// OTHER DEALINGS IN THE SOFTWARE.
|
// OTHER DEALINGS IN THE SOFTWARE.
|
||||||
//
|
//
|
||||||
|
|
||||||
|
#if MINIMAL
|
||||||
|
using System;
|
||||||
|
|
||||||
namespace OpenTK
|
namespace OpenTK
|
||||||
{
|
{
|
||||||
#if MINIMAL
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Stores the width and height of a rectangle.
|
/// Stores the width and height of a rectangle.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -155,5 +157,5 @@ namespace OpenTK
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
#endif
|
|
@ -1,7 +1,5 @@
|
||||||
#if !MINIMAL
|
#if ANDROID || IPHONE || MINIMAL
|
||||||
#endif
|
using System;
|
||||||
|
|
||||||
#if ANDROID || IPHONE || MINIMAL
|
|
||||||
|
|
||||||
namespace OpenTK
|
namespace OpenTK
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue