mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 10:31:26 -07:00
instead of removing reshade outright, it's probably better to just make people switch to LIVE for now. yeah, reshade is on its last knees, but if there's still time, i'm taking it
22 lines
664 B
C#
22 lines
664 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Bloxstrap.Models
|
|
{
|
|
public class ReShadeShaderConfig
|
|
{
|
|
// it's assumed that the BaseFolder has a "Textures" folder and a "Shaders" folder
|
|
// the files listed in ExcludedFiles are relative to the BaseFolder
|
|
|
|
public string Name { get; set; } = null!;
|
|
public string DownloadLocation { get; set; } = null!;
|
|
public string BaseFolder { get; set; } = "/";
|
|
public List<string> ExcludedFiles { get; set; } = new List<string>();
|
|
|
|
public override string ToString() => Name;
|
|
}
|
|
}
|