11 lines
361 B
C#
11 lines
361 B
C#
namespace BadBuilder.Utilities
|
|
{
|
|
internal static class Constants
|
|
{
|
|
internal const string WORKING_DIR = "Work";
|
|
internal const string DOWNLOAD_DIR = $@"{WORKING_DIR}\Download";
|
|
internal const string EXTRACTED_DIR = $@"{WORKING_DIR}\Extract";
|
|
|
|
internal const string ContentFolder = "Content\\0000000000000000\\";
|
|
}
|
|
} |