Commit 6ff87add authored by Allen B. Doelue's avatar Allen B. Doelue

Delete main.cpp

parent 3e171d32
#include <iostream>
using namespace std;
#include "Player.h"
int main()
{
Player p1; //default player
p1.displayName(); //default name is CPU
cout<<"is rank "<<p1.getRank()<<endl; // default rank is 1
cout<<endl;
Player p2("Cameron", 6);
p2.displayName();
cout<<"is rank "<<p2.getRank()<<endl;
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment