sync project paths & namespaces

This commit is contained in:
2023-09-22 19:06:20 +02:00
parent 750a3dabe3
commit d65f812684
53 changed files with 43 additions and 470 deletions

View File

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