

icecoolinux Escribió:
me tiro un error que me dice que intente reinstalar la aplicacion.
fsansberro Escribió:
Consejo: Simpre hagan un video del juego y pasen el link para los que no tienen nada de tiempo para andar instalando pero quieren verlo a ver que tal.
#ifndef JUGADOR
#define JUGADOR
class Jugador123;
public :
Jugador();
int GetPuntaje();
void AddPuntaje();
void Reset();
private :
int puntaje;
};
#endif
#include "Jugador.h"
Jugador::Jugador()123;
puntaje=0;
}
void Jugador::AddPuntaje()123;
++puntaje;
}
int Jugador::GetPuntaje()123;
return puntaje;
}
void Jugador::Reset()123;
puntaje=0;
}
#include <iostream>
#include "Jugador.h"
Jugador MyPlayer;
int main () 123;
MyPlayer = new Jugador;
MyPlayer.AddPuntaje;
cout << "Puntaje Jugador: " << MyPlayer.GetPuntaje;
return 0;
}
juako Escribió:
Una pregunta meto tambien los cpp en la misma que los h? o tengo que linkearlos de otra formaEs recomendable porque sino puede ser un futuro dolor de cabeza.
You must log in to post.