Player.cpp
 1  #include "Player.h"
 2  #include <iostream>
 3  using namespace std;
 4  
 5  void	Player::PrintInfo()
 6  {
 7  	cout << "--------------------" << endl;
 8  	cout << "[Player Status] " << "HP: " << _hp << " ATT: " << _attack << " DEF: " << _defence << endl;
 9  	cout << "--------------------" << endl;
10  }