forked from planetarianPKU/MapEditor_RA2
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathConstants.cs
More file actions
31 lines (29 loc) · 1.47 KB
/
Constants.cs
File metadata and controls
31 lines (29 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace RandomMapGenerator
{
static class Constants
{
public static string WorkFolder { get; set; } = @"C:\Users\hanfangxu\Documents\GitHub\MapEditor_RA2\";
public static string FileName = "map.yrm";
public static string SaveFileName = "Output.txt";
public static string MapPackName = "IsoMapPack5";
public static string FilePath = WorkFolder + FileName;
public static string SaveFilePath = WorkFolder + SaveFileName;
public static string BitMapName = "bitmap.bmp";
public static string BitMapPath = WorkFolder + BitMapName;
public static string TemplateMapName = "templateMap.map";
public static string TemplateMapPath = WorkFolder + TemplateMapName;
public static string TEMPERATEPath = WorkFolder + @"TileInfo\TEMPERATE\";
public static string SNOWPath = WorkFolder + @"TileInfo\SNOW\";
public static string URBANPath = WorkFolder + @"TileInfo\URBAN\";
public static string NEWURBANPath = WorkFolder + @"TileInfo\NEWURBAN\";
public static string LUNARPath = WorkFolder + @"TileInfo\LUNAR\";
public static string DESERTPath = WorkFolder + @"TileInfo\DESERT\";
public static int FailureTimes = 10000;
public static string RenderPath = WorkFolder + @"Map Renderer\CNCMaps.Renderer.exe";
public static string GamePath = @"D:\Games\YURI\Red Alert 2";
}
}