blob: c9e7131c7e19eb1c6f512b40263b7f752c47a3dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include "StarEntity.hpp"
namespace Star {
STAR_CLASS(AggressiveEntity);
class AggressiveEntity : public virtual Entity {
public:
virtual bool aggressive() const = 0;
};
}
|