osb/source/game/interfaces/StarAggressiveEntity.hpp
2023-06-20 14:33:09 +10:00

18 lines
257 B
C++

#ifndef STAR_AGGRESSIVE_ENTITY_HPP
#define STAR_AGGRESSIVE_ENTITY_HPP
#include "StarEntity.hpp"
namespace Star {
STAR_CLASS(AggressiveEntity);
class AggressiveEntity : public virtual Entity {
public:
virtual bool aggressive() const = 0;
};
}
#endif