mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-29 20:03:41 +01:00
feat: third party repo UI
This commit is contained in:
parent
24c40a55cb
commit
4ca76180b7
3 changed files with 96 additions and 3 deletions
|
|
@ -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;
|
||||
|
|
|
|||
13
Dalamud/Configuration/ThirdRepoSetting.cs
Normal file
13
Dalamud/Configuration/ThirdRepoSetting.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue