# | Line 42 | Line 42 | |
---|---|---|
42 | #ifndef SELECTION_SELECTIONMANAGER_HPP | |
43 | #define SELECTION_SELECTIONMANAGER_HPP | |
44 | ||
45 | + | #include "utils/BitSet.hpp" |
46 | + | |
47 | namespace oopse { | |
48 | ||
49 | /** | |
# | Line 49 | Line 51 | class SelectionManager { | |
51 | * @brief | |
52 | */ | |
53 | class SelectionManager { | |
54 | + | public: |
55 | + | SelectionManager(); |
56 | ||
57 | + | |
58 | + | bool isSelected(StuntDouble* sd); |
59 | + | |
60 | + | private: |
61 | + | |
62 | + | BitSet bsSelection; |
63 | + | BitSet bsNull; |
64 | }; | |
65 | ||
66 | } |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |