16 lines
540 B
C#
16 lines
540 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\\";
|
|
|
|
internal const long KB = 1024L;
|
|
internal const long MB = 1048576L;
|
|
internal const long GB = 1073741824L;
|
|
internal const long TB = 1099511627776L;
|
|
}
|
|
} |