Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class AI
- {
- public:
- AI(int nHP = 100, int nAttack = 9, nDefence = 9, nHeal = 5)
- {
- HP = nHP;
- FullHP = HP;
- attack = nAttack;
- defence = nDefence;
- heal = nHeal;
- }
- virtual ~AI() {}
- int HP
- int FullHP
- int attack;
- int defence;
- int heal;
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement