コード例 #1
0
ファイル: Player_Status.cs プロジェクト: Umut93/BoldQuiz
 public Player_Status(int ID, int SavedScore, Player PLayer, Room_levels Room_levels, int Warnings, bool IsUnlocked)
 {
     this.ID          = ID;
     this.SavedScore  = SavedScore;
     this.Player      = Player;
     this.Room_levels = Room_levels;
     this.Warnings    = Warnings;
     this.IsUnlocked  = IsUnlocked;
 }
コード例 #2
0
ファイル: Player_Question.cs プロジェクト: Umut93/BoldQuiz
 public Player_Question(int SavedScore, Player Player, Room_levels Room_levels)
 {
     this.SavedScore  = SavedScore;
     this.Player      = Player;
     this.Room_levels = Room_levels;
 }