working towards 2.0

add better version detection
add new licenses
working on automatic GPU, lang and os detection
add debug mode for non-nivida
This commit is contained in:
Jakob 2020-07-25 13:29:15 +02:00
parent 5580669497
commit bf9814cfd0
9 changed files with 212 additions and 25 deletions

14
EnvyUpdate/GlobalVars.cs Normal file
View file

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EnvyUpdate
{
class GlobalVars
{
public static string gpuName = null;
public static bool mobile = false;
}
}