Ejemplo n.º 1
0
 public CardToBuild(int ind, TopCardFeature topFeature, int topFeatureParam, BottomCardFeature bottomFeature, int bottomFeatureParam)
 {
     this.TopFeature         = topFeature;
     this.TopFeatureParam    = topFeatureParam;
     this.BottomFeature      = bottomFeature;
     this.BottomFeatureParam = bottomFeatureParam;
     this.TopUsed            = true;
     if (TopFeature == TopCardFeature.InstrumentsOnce || TopFeature == TopCardFeature.ResourceAny)
     {
         TopUsed = false;
     }
     this.Ind = ind;
 }
Ejemplo n.º 2
0
 public CardToBuild(int ind, TopCardFeature topFeature, int topFeatureParam, BottomCardFeature bottomFeature, Science science) :
     this(ind, topFeature, topFeatureParam, bottomFeature, (int)science)
 {
 }