20 lines
679 B
C#
20 lines
679 B
C#
public static class ChinaMap {
|
|
public static MapDefinition Create() {
|
|
return new MapDefinition {
|
|
mapId = MapId.China,
|
|
displayName = "China",
|
|
routeName = "베이징 시장길",
|
|
isTutorial = false,
|
|
platformSkin = Platform.PlatformSkin.China,
|
|
backgroundResourcePath = "Map_China_Beijing",
|
|
finishGateStyle = FinishGateStyle.ChinaPaifang,
|
|
targetDistance = 1450f,
|
|
timeLimit = 115f,
|
|
clearMileageReward = 350,
|
|
hasNextMap = true,
|
|
nextMapId = MapId.America,
|
|
courseProfile = ChinaCourseProfile.Create()
|
|
};
|
|
}
|
|
}
|