feat(sound): add SOUNDKITLOOKUP

This commit is contained in:
fallenoak 2025-11-22 13:12:30 -06:00
parent 56a63e6a33
commit 29ee02db68
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D

View File

@ -0,0 +1,13 @@
#ifndef SOUND_SOUND_KIT_LOOKUP_HPP
#define SOUND_SOUND_KIT_LOOKUP_HPP
#include <storm/Hash.hpp>
struct SOUNDKITLOOKUP : public TSHashObject<SOUNDKITLOOKUP, HASHKEY_CONSTSTRI> {
public:
// Member variables
uint32_t ID;
};
#endif