mirror of
https://github.com/MathiasLui/CSGO-Projects.git
synced 2025-05-06 13:51:18 +00:00
13 lines
269 B
C#
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();
|
|
}
|
|
}
|