I originally studied Java, and I'm currently attempting to transition to C++.
I'm having some trouble getting arrays to function properly.
Right now, all I'm attempting to do is build an array of the object "Player" and add one to it.
But I encounter a problem.
Player* players = new Player[1];
players[0] = new Player(playerWidth, playerHeight, 20, 1);
The operand "=" matches these operands, the error states.
These are the operand types: Player = Player *
Why doesn't this work, I don't know.