Starbound/source/game/interfaces/StarAggressiveEntity.hpp
2025-03-21 22:23:30 +11:00

17 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