Added appropriate delete statements.

This commit is contained in:
2022-11-12 01:35:47 -08:00
parent 42645883cd
commit d81cb5d834
14 changed files with 71 additions and 8 deletions

View File

@ -37,6 +37,12 @@ namespace Dawn {
return asset;
}
template<class T>
void unload(std::string name) {
assertUnreachable();
//should delete the asset for you
}
~AssetManager();
};
}