| 78 | } |
| 79 | |
| 80 | void PrintRange(EntitySystemHelpersBase& eh, char const* name, std::span<ComponentTypeIndex const> inds) |
| 81 | { |
| 82 | if (!inds.empty()) std::cout << "\t" << name << ": "; |
| 83 | for (auto i : inds) { |
| 84 | std::cout << " " << *eh.GetComponentName(i); |
| 85 | } |
| 86 | if (!inds.empty()) std::cout << std::endl; |
| 87 | } |
| 88 | |
| 89 | void QueryDescription::DebugPrint(QueryIndex index, EntitySystemHelpersBase& eh) const |
| 90 | { |
no test coverage detected