diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2024-01-01 16:21:04 -0500 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2024-01-01 16:21:04 -0500 |
| commit | 95d8b7bf77b7f86e5c7a7be2fe76f1276d16e8ef (patch) | |
| tree | bcbf062dbc801dcb266eea78796a38ab85b1204b /src/asset-manager.hpp | |
| parent | 4f86a0b3fcc09b7f2b769bc7cfb88910e4051681 (diff) | |
add audio asset type
Diffstat (limited to 'src/asset-manager.hpp')
| -rw-r--r-- | src/asset-manager.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/asset-manager.hpp b/src/asset-manager.hpp index fe0a688..48a9ccb 100644 --- a/src/asset-manager.hpp +++ b/src/asset-manager.hpp @@ -26,6 +26,7 @@ const AssetType PKE_ASSET_TYPE_UNSET = AssetType {0x00}; const AssetType PKE_ASSET_TYPE_SHADER = AssetType {0x01}; const AssetType PKE_ASSET_TYPE_MODEL = AssetType {0x02}; const AssetType PKE_ASSET_TYPE_TEXTURE = AssetType {0x04}; +const AssetType PKE_ASSET_TYPE_AUDIO = AssetType {0x08}; const AssetType PKE_ASSET_TYPE_ALL = AssetType {0xFF}; struct Asset { |
