20 lines
697 B
C#
20 lines
697 B
C#
public static class AmericaMap {
|
|
public static MapDefinition Create() {
|
|
return new MapDefinition {
|
|
mapId = MapId.America,
|
|
displayName = "America",
|
|
routeName = "뉴욕 자유의 여신상",
|
|
isTutorial = false,
|
|
platformSkin = Platform.PlatformSkin.USA,
|
|
backgroundResourcePath = "Map_America_NewYork",
|
|
finishGateStyle = FinishGateStyle.AmericaLiberty,
|
|
targetDistance = 1700f,
|
|
timeLimit = 125f,
|
|
clearMileageReward = 500,
|
|
hasNextMap = false,
|
|
nextMapId = MapId.America,
|
|
courseProfile = AmericaCourseProfile.Create()
|
|
};
|
|
}
|
|
}
|