public BalloonEntity(InkColor color)
 {
     Color = color;
 }
Beispiel #2
0
 public InkTile(InkColor color)
 {
     Color = color;
 }
Beispiel #3
0
 public InkTileConsumeEvent(InkColor balloonColor, InkColor inkTileColor)
 {
     BalloonColor = balloonColor;
     InkTileColor = inkTileColor;
 }
Beispiel #4
0
 public Ink(InkColor color, byte amount)
 {
     Color  = color;
     Amount = amount;
 }
Beispiel #5
0
 public Ink(InkColor color)
 {
     Color  = color;
     Amount = 0;
 }
Beispiel #6
0
 public BalloonPopEvent(InkColor color)
 {
     Color = color;
 }
Beispiel #7
0
 public PinTile(InkColor color)
 {
     Color = color;
 }
 public OutOfInkEventArgs(InkColor color)
 {
     Color = color;
 }