示例#1
0
 public Card(SuitType t, int r, CardHandler c)
 {
     Suit       = t;
     Rank       = r;
     Type       = c;
     attributes = null;
     Log        = new UI.ActionLog();
 }
示例#2
0
文件: Card.cs 项目: pxoylngx/sgs
 public Card(SuitType t, int r, CardHandler c)
 {
     Suit = t;
     Rank = r;
     Type = c;
     attributes = null;
     Log = new UI.ActionLog();
 }
示例#3
0
 public Card()
 {
     Suit       = SuitType.None;
     Rank       = 0;
     Type       = null;
     RevealOnce = false;
     attributes = null;
     Log        = new UI.ActionLog();
 }
示例#4
0
文件: Card.cs 项目: pxoylngx/sgs
 public Card()
 {
     Suit = SuitType.None;
     Rank = 0;
     Type = null;
     RevealOnce = false;
     attributes = null;
     Log = new UI.ActionLog();
 }
示例#5
0
 public Card(ICard c)
 {
     Suit       = c.Suit;
     Rank       = c.Rank;
     Type       = c.Type;
     RevealOnce = false;
     Place      = c.Place;
     Id         = -1;
     Attributes = c.Attributes;
     Log        = new UI.ActionLog();
 }
示例#6
0
文件: Card.cs 项目: pxoylngx/sgs
 public Card(ICard c)
 {
     Suit = c.Suit;
     Rank = c.Rank;
     Type = c.Type;
     RevealOnce = false;
     Place = c.Place;
     Id = -1;
     Attributes = c.Attributes;
     Log = new UI.ActionLog();
 }