diff --git a/ClickableTransparentOverlay/ClickableTransparentOverlay.csproj b/ClickableTransparentOverlay/ClickableTransparentOverlay.csproj
index 2cf9683..0ea9ddd 100644
--- a/ClickableTransparentOverlay/ClickableTransparentOverlay.csproj
+++ b/ClickableTransparentOverlay/ClickableTransparentOverlay.csproj
@@ -47,15 +47,17 @@
bin\x64\Release\
- TRACE
+
+
true
- pdbonly
+ none
x64
prompt
MinimumRecommendedRules.ruleset
true
+ Off
diff --git a/DriverProgram/DriverProgram.csproj b/DriverProgram/DriverProgram.csproj
index 10f3da9..78abe47 100644
--- a/DriverProgram/DriverProgram.csproj
+++ b/DriverProgram/DriverProgram.csproj
@@ -7,7 +7,7 @@
{370E1945-EF74-4618-A2DE-B5796AC3093E}
Exe
DriverProgram
- DriverProgram
+ ImGuiDemo
v4.7.2
512
true
@@ -45,9 +45,10 @@
bin\x64\Release\
- TRACE
+
+
true
- pdbonly
+ none
x64
prompt
MinimumRecommendedRules.ruleset
@@ -55,6 +56,7 @@
true
+ Off
diff --git a/DriverProgram/Program.cs b/DriverProgram/Program.cs
index ab06a0b..0abfc7e 100644
--- a/DriverProgram/Program.cs
+++ b/DriverProgram/Program.cs
@@ -2,6 +2,7 @@
{
using ClickableTransparentOverlay;
using ImGuiNET;
+ using System;
using System.Threading;
class Program
@@ -12,9 +13,15 @@
private static int Fps = 144;
static void Main(string[] args)
{
- //Width = int.Parse(System.IO.File.ReadAllText("config/width.txt"));
- //Height = int.Parse(System.IO.File.ReadAllText("config/height.txt"));
- //Fps = int.Parse(System.IO.File.ReadAllText("config/fps.txt"));
+ Console.Write("Enter Screen Width:");
+ Width = Convert.ToInt32(Console.ReadLine());
+
+ Console.Write("Enter Screen Height:");
+ Height = Convert.ToInt32(Console.ReadLine());
+
+ Console.Write("Enter Monitor Max FPS:");
+ Fps = Convert.ToInt32(Console.ReadLine());
+
var EndDemo = new Thread(DistroyDemo);
EndDemo.Start();
StartDemo();
diff --git a/DriverProgram/Properties/AssemblyInfo.cs b/DriverProgram/Properties/AssemblyInfo.cs
index 0fc7a88..a55a48b 100644
--- a/DriverProgram/Properties/AssemblyInfo.cs
+++ b/DriverProgram/Properties/AssemblyInfo.cs
@@ -5,7 +5,7 @@ using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
-[assembly: AssemblyTitle("DriverProgram")]
+[assembly: AssemblyTitle("ImGuiDemo")]
[assembly: AssemblyDescription("ImGui Demo Window")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]