osb/source/game/interfaces/StarAggressiveEntity.hpp

18 lines
257 B
C++
Raw Normal View History

2023-06-20 04:33:09 +00:00
#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