summaryrefslogtreecommitdiffstats
path: root/src/game/client/sound_effect.hh
blob: 83b5e4de03b4aa8a9892b4cc2bce2b092eb89fdf (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef CLIENT_SOUND_EFFECT_HH
#define CLIENT_SOUND_EFFECT_HH 1
#pragma once

struct SoundEffect final {
    std::string name;
    ALuint buffer;
};

#endif /* CLIENT_SOUND_EFFECT_HH  */