Skip to content
Permalink
12d06b305d
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
19 lines (16 sloc) 265 Bytes
#ifndef PLAYER_HPP
#define PLAYER_HPP
#include <array>
#include <string>
#include "Hero.hpp"
using namespace std;
class Player
{
private:
string name;
array<Hero, 5> heroes;
public:
Player(array<int, 5> selection);
Hero GetHero(int ID);
}
#endif