Expected class name

So I'm getting an error: "Expected class name" on the following class:
#ifndef WeaponEntiity_hpp
#define WeaponEntiity_hpp

#include <stdio.h>

#include "Entity.hpp"


class WeaponEntity : public Entity
{
float durability = 100; //percent, higher number better durapility
float damage = 10; //score range from 0 to 100;

};


#endif /* WeaponEntiity_hpp */

Any ideas?
Not enough information to know.
To start, what is the exact, full error message, and what does Entity.hpp look like?
Last edited on
Topic archived. No new replies allowed.