SimpleAI
 All Classes Namespaces Files Functions Variables Typedefs Macros Groups Pages
SelectAll.h
Go to the documentation of this file.
1 
5 #pragma once
6 
7 #include "filter/IFilter.h"
8 
9 namespace ai {
10 
14 class SelectAll: public IFilter {
15 public:
16  FILTER_CLASS_SINGLETON(SelectAll)
17 
18  void filter (const AIPtr& entity) override;
19 };
20 
21 inline void SelectAll::filter (const AIPtr& /*entity*/) {
22 }
23 
24 }
This filter is a nop - it will just use the already filtered entities.
Definition: SelectAll.h:14