GlistEngine
Loading...
Searching...
No Matches
gFmodSound.h
Go to the documentation of this file.
1/*
2 * gFmodSound.h
3 *
4 * Created on: 16 Nis 2025
5 * Author: Admin
6 */
7
8#ifndef MEDIA_GFMODSOUND_H_
9#define MEDIA_GFMODSOUND_H_
10
11#include "gSound.h"
12
13// gFmodSound inherits from gSound. it is a drop-in replacement for gFmodSound.
14// Only here for backwards compatability, you can consider this is an alias type.
15class gFmodSound : public gSound {
16public:
18 gLoge("gFmodSound") << "gFmodSound is deprecated. Use gSound instead.\n";
19 }
20};
21
22#endif /* MEDIA_GFMODSOUND_H_ */
Definition gFmodSound.h:15
gFmodSound()
Definition gFmodSound.h:17
Definition gUtils.h:286
A sound class using miniaudio with ma_engine and ma_sound.
Definition gSound.h:25