Remove unused class BizwareGLExtensions

This commit is contained in:
YoshiRulz 2021-02-13 22:56:23 +10:00 committed by James Groom
parent 90d0e21863
commit 6fc43e9c22
1 changed files with 0 additions and 17 deletions

View File

@ -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);
}
}
}