Cleanup: Asset catalogs, C++ to C-style comments

No functional changes.
This commit is contained in:
Sybren A. Stüvel
2021-08-02 11:15:50 +02:00
parent 1f0d6f7635
commit 06cb48e1b2

View File

@@ -52,14 +52,14 @@ class AssetCatalogService {
/* TODO(@sybren): determine which properties should be private / get accessors. */
// These pointers are owned by this AssetCatalogService.
/* These pointers are owned by this AssetCatalogService. */
Map<CatalogID, std::unique_ptr<AssetCatalog>> catalogs;
std::unique_ptr<AssetCatalogDefinitionFile> catalog_definition_file;
public:
AssetCatalogService();
// Return nullptr if not found.
/* Return nullptr if not found. */
AssetCatalog *find_catalog(const CatalogID &catalog_id);
void load_from_disk(const CatalogFilePath &asset_library_root);