Add a using declaration to help differentiate between OpenTK.Graphics and System.Drawing.Graphics.

This commit is contained in:
the_fiddler 2008-01-23 12:42:07 +00:00
parent a12471c144
commit b5973ddd7f
2 changed files with 8 additions and 5 deletions

View file

@ -11,6 +11,8 @@ using System.Drawing;
namespace OpenTK.Fonts
{
using Graphics = System.Drawing.Graphics;
/// <summary>
/// Represents a single character of a specific Font.
/// </summary>

View file

@ -7,20 +7,21 @@
using System;
using System.Collections.Generic;
using System.Text;
//using System.Drawing;
using System.Drawing.Text;
using System.Drawing;
using System.Drawing.Imaging;
using System.Runtime.InteropServices;
using System.Diagnostics;
using OpenTK.Math;
using OpenTK.OpenGL;
using OpenTK.OpenGL.Enums;
using System.Drawing.Imaging;
using OpenTK.Platform;
using System.Drawing;
using System.Runtime.InteropServices;
using System.Diagnostics;
namespace OpenTK.Fonts
{
using Graphics = System.Drawing.Graphics;
public class TextureFont : IFont
{
Font font;