Show DopePlano.h syntax highlighted
#ifndef __DOPE_PLANO_H__
#define __DOPE_PLANO_H__
#include "DopePrerequisites.h"
#include "DopeEntidad.h"
namespace Dope {
class Plano : public Entidad
{
protected:
Real mWidth;
Real mHeight;
void setUp(const String& name);
public:
Plano(const String& name, Real width, Real height);
~Plano();
};
}
#endif
See more files for this project here