RingRacers/src/audio/sound_chunk.hpp
2025-02-13 15:48:11 -06:00

28 lines
704 B
C++

// DR. ROBOTNIK'S RING RACERS
//-----------------------------------------------------------------------------
// Copyright (C) 2025 by Ronald "Eidolon" Kinard
// Copyright (C) 2025 by Kart Krew
//
// This program is free software distributed under the
// terms of the GNU General Public License, version 2.
// See the 'LICENSE' file for more details.
//-----------------------------------------------------------------------------
#ifndef __SRB2_AUDIO_SOUND_CHUNK_HPP__
#define __SRB2_AUDIO_SOUND_CHUNK_HPP__
#include <vector>
#include "sample.hpp"
namespace srb2::audio
{
struct SoundChunk
{
std::vector<Sample<1>> samples;
};
} // namespace srb2::audio
#endif // __SRB2_AUDIO_SOUND_CHUNK_HPP__