From 95d8b7bf77b7f86e5c7a7be2fe76f1276d16e8ef Mon Sep 17 00:00:00 2001 From: Jonathan Bradley Date: Mon, 1 Jan 2024 16:21:04 -0500 Subject: add audio asset type --- src/asset-manager.hpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/asset-manager.hpp') 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 { -- cgit v1.2.3