Skip to content
Permalink
cb033f1736
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
28 lines (20 sloc) 283 Bytes
#pragma once
#include <string>
using namespace std;
class Player
{
private:
string player_Name;
public:
Player()
{
}
void ChosenName(const string& name)
{
player_Name = name;
}
const string& GetName() const
{
return player_Name;
}
};