add structure locate command

This commit is contained in:
dfsek
2021-03-14 16:45:32 -07:00
parent 6ab8cd5b5b
commit ec4e0694a4
8 changed files with 141 additions and 1 deletions

View File

@@ -78,6 +78,11 @@ public class OpenRegistry<T> implements Registry<T> {
return new HashSet<>(objects.values());
}
@Override
public Set<String> keys() {
return objects.keySet();
}
/**
* Clears all entries from the registry.
*/