| 17 | extern EnumMap<CollectionType> const CollectionTypeNames; |
| 18 | |
| 19 | struct Collectable { |
| 20 | Collectable(); |
| 21 | Collectable(String const& name, int order, String const& title, String const& description, String const& icon); |
| 22 | |
| 23 | String name; |
| 24 | int order; |
| 25 | String title; |
| 26 | String description; |
| 27 | String icon; |
| 28 | }; |
| 29 | |
| 30 | struct Collection { |
| 31 | Collection(); |