예제 #1
0
 public Card(int money, CardLandscape landscape, int hP, int damage)
 {
     Money     = money;
     Landscape = landscape;
     HP        = hP;
     Damage    = damage;
 }
예제 #2
0
 public LandscapeCard(CardLandscape landscape)
 {
     Landscape = landscape;
 }
예제 #3
0
 public GraphicCard(CardCharacter character, CardLandscape landscape, PictureBox pb) : base(character, landscape)
 {
     Pb = pb;
 }
예제 #4
0
 public GraphicCard(CardCharacter character, CardLandscape landscape) : base(character, landscape)
 {
     Pb = new PictureBox();
 }
예제 #5
0
 public Card(CardCharacter character, CardLandscape landscape)
 {
     Character = character;
     Landscape = landscape;
 }