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

struct SoundEffect final {
    static void register_resource(void);

    std::string name;
    ALuint buffer;
};

#endif // CLIENT_SOUND_EFFECT_HH