linting 3

This commit is contained in:
lewd-alt
2025-09-15 17:52:51 -07:00
parent bb3bf291e2
commit 459e9d04a6
21 changed files with 2207 additions and 3083 deletions

View File

@@ -65,14 +65,6 @@ namespace _2DGAMELIB
Color.Black
};
private const int LOGPIXELSX = 88;
private const int LOGPIXELSY = 90;
public static double dpiX;
public static double dpiY;
public static double DpiX;
public static double DpiY;
@@ -83,12 +75,6 @@ namespace _2DGAMELIB
//public Control BaseControlC => baseControl;
public GlImage BaseControl => baseControl;
public double ResMag => resMag;
public Vector2D ResVector => resVector;
public string Mode
{
get
@@ -320,30 +306,28 @@ namespace _2DGAMELIB
{
baseControl.BitmapSetting(BD);
Modes[mode].Setting();
double FPS = 0.0;
Action action = delegate
{
FPS = FPSF.Value;
if (FPS > 1.0)
if (FPSF.Value > 1.0)
{
Modes[mode].Draw(FPSF);
}
if (ShowFPS)
{
baseControl.SetTitle(UITitle + " - FPS: " + System.Math.Round(FPSF.Value, 2));
}
}
GD.DrawImage(BH, new Point(0, 0));
baseControl.SetBitmap(BD);
};
};
while (Drive)
{
FPSF.FPSFixed(action);
if (ShowFPS)
{
baseControl.SetTitle(UITitle + " - FPS: " + System.Math.Round(FPSF.Value, 2));
}
baseControl.PollEvents();
}
}
@@ -428,20 +412,6 @@ namespace _2DGAMELIB
}
}
public void Dispose()
{
Drive = false;
foreach (Module value in Modes.Values)
{
value.Dispose();
}
BD.Dispose();
GD.Dispose();
BH.Dispose();
GH.Dispose();
Sce.Dispose();
}
//[DllImport("user32.dll")]
//private static extern bool SetProcessDPIAware();