Skip to content

Commit

Permalink
minor fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
zaafar committed Jul 21, 2024
1 parent 57e831c commit a6d0e23
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Examples/MultiThreadedOverlay/SampleOverlay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
{
using System;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Numerics;
using System.Threading;
using System.Threading.Tasks;
using ClickableTransparentOverlay;
using ClickableTransparentOverlay.Win32;
using ImGuiNET;
Expand All @@ -19,7 +17,7 @@ public class SampleOverlay : Overlay
private volatile State state;
private readonly Thread logicThread;

public SampleOverlay()
public SampleOverlay() : base(3840, 2160)
{
state = new State();
logicThread = new Thread(() =>
Expand Down

0 comments on commit a6d0e23

Please sign in to comment.