#pragma once #include #include #include "../Resource.h" namespace crepe { class SoundContext; /** * \brief Sound resource facade * * This class is a wrapper around a \c SoLoud::Wav instance, which holds a * single sample. It is part of the sound facade. */ class Sound : public Resource { public: Sound(const Asset & src); ~Sound(); // dbg_trace struct Handle { SoLoud::handle handle; }; private: SoLoud::Wav sample; friend class SoundContext; }; } // namespace crepe