コード例 #1
0
ファイル: ProgressInfo.cs プロジェクト: MichielDeMey/Savezone
 public ProgressInfo(ProgressTypeEnum.ProgressType progressType, int currentIndex, int total, string gamename)
 {
     _progressType = progressType;
     _currentIndex = currentIndex;
     _total = total;
     _gamename = gamename;
 }
コード例 #2
0
ファイル: ProgressInfo.cs プロジェクト: MichielDeMey/Savezone
 public ProgressInfo(ProgressTypeEnum.ProgressType progressType, int currentIndex, int total)
 {
     _progressType = progressType;
     _currentIndex = currentIndex;
     _total = total;
 }