feat: third party repo UI

This commit is contained in:
goat 2020-12-13 21:15:47 +01:00
parent 24c40a55cb
commit 4ca76180b7
3 changed files with 96 additions and 3 deletions

View file

@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using System.IO;
using Dalamud.Configuration;
using Dalamud.Game.Chat;
using Newtonsoft.Json;
using Serilog;
@ -25,6 +26,7 @@ namespace Dalamud
public bool DoPluginTest { get; set; } = false;
public bool DoDalamudTest { get; set; } = false;
public List<ThirdRepoSetting> ThirdRepoList { get; set; }= new List<ThirdRepoSetting>();
public float GlobalUiScale { get; set; } = 1.0f;
public bool ToggleUiHide { get; set; } = true;

View file

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Dalamud.Configuration
{
class ThirdRepoSetting {
public string Url { get; set; }
public bool IsEnabled { get;set; }
}
}