summaryrefslogtreecommitdiffstats
path: root/src/game/client/resource/sound_effect.hh
blob: 602293c6df9f8ac499ef7e75bc6908368c6e85c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: BSD-2-Clause
// Copyright (c) 2025 Kirill Dmitrievich
// File: sound_effect.hh
// Description: Sound effect resource

#ifndef CLIENT_RESOURCE_SOUND_EFFECT_HH
#define CLIENT_RESOURCE_SOUND_EFFECT_HH
#pragma once

struct SoundEffect final {
    static void register_resource(void);

    std::string name;
    ALuint buffer;
};

#endif