Struct and Class
struct Player{
    int health;
    int strength;
    int agility;
}
Player Jane, John;
class Player {
   public:
        int health;
       int strength;
        int agility;
};
Player Jane, John;