summaryrefslogtreecommitdiffstats
path: root/src/game/client/sound_effect.hh
blob: 8b1372bb5cb54b55ad2096bb6ffa63e89e51dbd0 (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