Writing some docs

This commit is contained in:
2022-11-12 01:46:18 -08:00
parent 489416a5eb
commit 1e8dfa7388
3 changed files with 56 additions and 2 deletions

View File

@ -14,7 +14,14 @@ namespace Dawn {
std::map<std::string, Asset*> assetsNotLoaded;
public:
/**
* Initializes this asset manager so it can begin accepting assets.
*/
void init();
/**
* Ticks the asset manager for a single frame, synchronously.
*/
void update();
/**
@ -43,6 +50,9 @@ namespace Dawn {
//should delete the asset for you
}
/**
* Dispose the asset manager, and all attached assets.
*/
~AssetManager();
};
}