mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-05-31 00:51:37 +00:00
Added support for TEXTURES and DECORATE files that have different extensions (they will be loaded cumulatively)
This commit is contained in:
parent
5f63667a66
commit
012673554d
5 changed files with 63 additions and 15 deletions
|
@ -274,7 +274,13 @@ namespace CodeImp.DoomBuilder.Data
|
|||
{
|
||||
return files.GetAllFiles(path, subfolders).ToArray();
|
||||
}
|
||||
|
||||
|
||||
// This returns all files in a given directory that have the given title
|
||||
protected override string[] GetAllFilesWithTitle(string path, string title, bool subfolders)
|
||||
{
|
||||
return files.GetAllFilesWithTitle(path, title, subfolders).ToArray();
|
||||
}
|
||||
|
||||
// This returns all files in a given directory that match the given extension
|
||||
protected override string[] GetFilesWithExt(string path, string extension, bool subfolders)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue