mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-04 19:36:43 +03:00
18 lines
293 B
C++
18 lines
293 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <map>
|
|
#include "SoundData.hpp"
|
|
|
|
class SoundRepository
|
|
{
|
|
public:
|
|
void add(const std::string& name, SoundDesc& sd);
|
|
bool get(const std::string& name, SoundDesc& sd);
|
|
|
|
public:
|
|
std::map<std::string, std::vector<SoundDesc>> m_repo;
|
|
};
|
|
|