blob: 502bb39c9e90322538d97e0ea208ec92c41911af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef SHARED_ENTITY_MOVEABLE_HH_
#define SHARED_ENTITY_MOVEABLE_HH_
#include "shared/entity/animate.hh"
#include "shared/movement/struct.hh"
namespace shared {
// Moveable is an animate that provides an AABB.
class moveable : virtual public shared::animate {
public:
virtual const movement::aabb& get_aabb() const noexcept = 0;
};
} // namespace shared
#endif
|