This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
UpTool2/UpTool2/GlobalVariables.cs
CreepyCrafter24 af1f9fbfea Improve code
2020-02-28 12:59:59 +01:00

14 lines
381 B
C#

using System;
using System.Collections.Generic;
using UpTool2.Data;
namespace UpTool2
{
static partial class GlobalVariables
{
public static Dictionary<Guid, App> apps = new Dictionary<Guid, App>();
public static bool relE = true;
public static Action reloadElements;
public static Version minimumVer => Version.Parse("0.0.0.0");
}
}