adjust LangResCollector for v1.14

This commit is contained in:
2023-01-06 15:46:53 +01:00
parent 6d46fab91b
commit fadf1f05c4
3 changed files with 52 additions and 30 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SM64_ROM_Manager.LangRes_Collector
{
internal class LangResFilterConfig
{
public string[] FileNameBlackList { get; set; }
public string[] FileNameWhiteList { get; set; }
public string[] PropNameBlackList { get; set; }
}
}