VOX
A little voxel engine
Loading...
Searching...
No Matches
SoundList.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <vector>
4#include <string>
5
6const std::string sound_folder = "assets/sounds/";
7const std::vector<std::string> sound_files = {
8 "ping.wav",
9 "calm1.wav",
10 "grass1.wav"
11};
12
13enum class SoundName
14{
15 PING,
16 CALM1,
17 GRASS1
18};
SoundName
Definition: SoundList.hpp:14
const std::vector< std::string > sound_files
Definition: SoundList.hpp:7
const std::string sound_folder
Definition: SoundList.hpp:6