Example #1
0
 public Action(int id, string description, Game game, Player player, DateTime time)
     : this(id, description, game, player)
 {
     this.Time = time;
 }
Example #2
0
 public Action(int id, string description, Game game, Player player)
     : this(description, game, player)
 {
     this.Id = id;
 }
Example #3
0
 public Answer(int id, Question question, Game game, Player player, string value)
     : this(question, game, player, value)
 {
     this.Id = id;
 }
Example #4
0
 public Action(string description, Game game, Player player)
     : this(description, game)
 {
     this.Player = player;
 }
Example #5
0
 public Answer(Question question, Game game, Player player, string value)
     : this(question, game, value)
 {
     this.Player = player;
 }