Added builder

Added shader importer
This commit is contained in:
2024-07-06 23:33:04 +02:00
parent 26eb1da3f0
commit 97c2b308f1
23 changed files with 535 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
namespace Nerfed.Builder;
public static class PathUtil
{
public const string ImportedFileExtension = ".bin";
public const string ImportFileExtension = ".import";
public const string ImportFolderName = "Import";
public const string ContentFolderName = "Content";
}