expected unqualified-id before 'public' [closed]

I don’t know why you wrote this ridiculous code, but I assume you may want this:

class Player
{
public:
    static int playerHP;
    static int playerPWR;
};

int Player::playerHP = 100;
int Player::playerPWR = 4;

Leave a Comment