Restore removed using statements from minimal classes.

This commit is contained in:
Jarl Gullberg 2017-07-20 21:41:38 +02:00
parent 4f562820f4
commit 41d4bef7e2
No known key found for this signature in database
GPG key ID: FBB69BD7CAE095A0
4 changed files with 14 additions and 10 deletions

View file

@ -23,9 +23,11 @@
// OTHER DEALINGS IN THE SOFTWARE.
//
#if MINIMAL
using System;
namespace OpenTK
{
#if MINIMAL
/// <summary>
/// Defines a point on a two-dimensional plane.
/// </summary>
@ -167,5 +169,5 @@ namespace OpenTK
return X == other.X && Y == other.Y;
}
}
#endif
}
#endif

View file

@ -23,9 +23,11 @@
// OTHER DEALINGS IN THE SOFTWARE.
//
#if MINIMAL
using System;
namespace OpenTK
{
#if MINIMAL
/// <summary>
/// Represents a rectangular region on a two-dimensional plane.
/// </summary>
@ -284,5 +286,5 @@ namespace OpenTK
Size.Equals(other.Size);
}
}
#endif
}
#endif

View file

@ -23,9 +23,11 @@
// OTHER DEALINGS IN THE SOFTWARE.
//
#if MINIMAL
using System;
namespace OpenTK
{
#if MINIMAL
/// <summary>
/// Stores the width and height of a rectangle.
/// </summary>
@ -155,5 +157,5 @@ namespace OpenTK
}
}
#endif
}
#endif

View file

@ -1,7 +1,5 @@
#if !MINIMAL
#endif
#if ANDROID || IPHONE || MINIMAL
#if ANDROID || IPHONE || MINIMAL
using System;
namespace OpenTK
{