frog
snowstorrm
 
 
mrvn enjoyer
Comments
Tobo Bop Apr 22 @ 3:50pm 
explode
ICreateThunder May 21, 2020 @ 5:49pm 
C++

[Header file]
class Player
{
public:
// Constructor
Player(int health, int skill);
private:
// Attributes for player
int Health;
int Skill;
}

[Source file]

Player::Player(int health, int skill) : Health(health), Skill(skill)
{

}

[Main file]
Player snow = Player(200, 9001);

[Message]
+ Rep. Good player! I like the profile BIO (If you couldn't tell). Skill is over 9000.