Here is my main. All I am trying to do is create an object of the class file, this is probably a very noobish question so sorry, just need to know what I'm doing wrong.
#include <iostream>
#include "Player.h"
using std::cout;
using std::cin;
int main()
{
cout << "Hello and welcome to the student adventures game.\n";
Player player1();
}