diff options
Diffstat (limited to 'src/client/targets.h')
-rw-r--r-- | src/client/targets.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/client/targets.h b/src/client/targets.h index 7e7ce26..32ea7cd 100644 --- a/src/client/targets.h +++ b/src/client/targets.h @@ -7,6 +7,7 @@ #ifndef __INCLUDED_CLIENT_TARGETS_H__ #define __INCLUDED_CLIENT_TARGETS_H__ +#include "core/entity.h" #include "render/render.h" #include "render/gl.h" #include "render/text.h" @@ -29,9 +30,12 @@ void render_listener_sound(); /// render the sound for one entity void render_entity_sound(core::Entity *Entity); +/// current selected target, 0 if there is no current targer +core::Entity *current(); + } } -#endif +#endif //__INCLUDED_CLIENT_TARGETS_H__ |