| 200 | } |
| 201 | |
| 202 | bool ResourceManager::can_get(StringId64 type, StringId64 name) |
| 203 | { |
| 204 | const ResourcePair id = { type, name }; |
| 205 | return _autoload ? true : hash_map::has(_resources, id); |
| 206 | } |
| 207 | |
| 208 | const void *ResourceManager::get(StringId64 type, StringId64 name) |
| 209 | { |