Advertisement
tankcr

Card class

Jun 13th, 2014
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.60 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ROD_Deck_Builder
  8. {
  9.     class Card
  10.     {
  11.         public int Rarity;
  12.         public string Name;
  13.         public string Realm;
  14.         public string Faction;
  15.         public string MaxAtk;
  16.         public string MaxDef;
  17.         public int Total;
  18.         public int Cost;
  19.         public int AttEff;
  20.         public int DefEff;
  21.         public int OverallEff;
  22.         public string Skill;
  23.         public string EventSkl1;
  24.         public string EventSkl2;
  25.  
  26.  
  27.     }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement