Updated Storage (markdown)

TheMode 2020-09-27 22:17:12 +02:00
parent ab98a8384b
commit e70add83b3
1 changed files with 1 additions and 1 deletions

@ -12,7 +12,7 @@ You can easily create your own by implementing the StorageSystem interface.
## Storage location
Storage locations are a way to separate your data in multiple categories. There are created/retrieved by calling:
```java
StorageLocation storageLocation = getLocation(YOUR_LOCATION_IDENTIFIER);
StorageLocation storageLocation = storageManager.getLocation(YOUR_LOCATION_IDENTIFIER);
```
Please note that the "location" is not related in any way to a folder or a file, it can be but this is dependent on the StorageSystem implementation you are using