Remove unused class BizwareGLExtensions
This commit is contained in:
parent
90d0e21863
commit
6fc43e9c22
|
@ -1,17 +0,0 @@
|
||||||
using System.Drawing;
|
|
||||||
using OpenTK;
|
|
||||||
|
|
||||||
namespace BizHawk.Bizware.BizwareGL
|
|
||||||
{
|
|
||||||
public static class BizwareGLExtensions
|
|
||||||
{
|
|
||||||
public static Vector2 ToVector2(this Size size)
|
|
||||||
{
|
|
||||||
return new Vector2(size.Width, size.Height);
|
|
||||||
}
|
|
||||||
public static PointF ToSDPointf(this Vector3 v)
|
|
||||||
{
|
|
||||||
return new PointF(v.X, v.Y);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue