diff options
Diffstat (limited to 'src/asset-manager.hpp')
| -rw-r--r-- | src/asset-manager.hpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/asset-manager.hpp b/src/asset-manager.hpp index 8064697..73d19a1 100644 --- a/src/asset-manager.hpp +++ b/src/asset-manager.hpp @@ -17,10 +17,10 @@ struct Asset{ void *ptr = nullptr; }; -void AssetManagerInit(); -AssetHandle RegisterAsset(const void *data, int64_t size, const char *key); -AssetHandle RegisterAsset(const char *path); -void DestroyAsset(AssetHandle assetHandle); -const Asset *GetAsset(AssetHandle assetHandle); +void AM_Init(); +AssetHandle AM_Register(const void *data, int64_t size, const char *key); +AssetHandle AM_Register(const char *path); +void AM_Destroy(AssetHandle assetHandle); +const Asset *AM_Get(AssetHandle assetHandle); #endif /* PKE_ASSET_MANAGER_HPP */ |
