コード例 #1
0
ファイル: SaveSlotUtils.cs プロジェクト: DevZhav/The-Forest
 public static string GetLocalSlotPath(PlayerModes mode, Slots slot)
 {
     return(string.Concat(new object[]
     {
         SaveSlotUtils.GetUserPath(),
         mode,
         "/",
         slot,
         "/"
     }));
 }
コード例 #2
0
ファイル: SaveSlotUtils.cs プロジェクト: Bruno13/TheForest
 public static string GetLocalSlotPath(TitleScreen.GameSetup.PlayerModes mode, TitleScreen.GameSetup.Slots slot)
 {
     return(string.Concat(new object[]
     {
         SaveSlotUtils.GetUserPath(),
         mode,
         "/",
         slot,
         "/"
     }));
 }
コード例 #3
0
ファイル: SaveSlotUtils.cs プロジェクト: DevZhav/The-Forest
 public static string GetMpClientLocalPath()
 {
     return(SaveSlotUtils.GetUserPath() + PlayerModes.Multiplayer + "/cs/");
 }
コード例 #4
0
ファイル: SaveSlotUtils.cs プロジェクト: Bruno13/TheForest
 public static string GetMpClientLocalPath()
 {
     return(SaveSlotUtils.GetUserPath() + TitleScreen.GameSetup.PlayerModes.Multiplayer + "/cs/");
 }