CSGO-Projects/DamagePrinter/DamagePrinterGUI/Globals.cs
MathiasL 435daf6eb6 Make damage printer GUI features work
* Fixed a SteamHelper method that's not used anyways that threw exceptions
2022-05-26 01:37:51 +02:00

13 lines
269 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DamagePrinterGUI
{
internal static class Globals
{
public static Settings Settings { get; set; } = new Settings();
}
}