mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-23 22:45:05 -04:00
17 lines
241 B
C
17 lines
241 B
C
#ifndef DUSK_AUDIO_H
|
|
#define DUSK_AUDIO_H
|
|
|
|
#if TARGET_PC
|
|
#define DUSK_AUDIO_DISABLED 0
|
|
#else
|
|
#define DUSK_AUDIO_DISABLED 0
|
|
#endif
|
|
|
|
#if TARGET_PC
|
|
#define DUSK_AUDIO_SKIP(...)
|
|
#else
|
|
#define DUSK_AUDIO_SKIP(...)
|
|
#endif
|
|
|
|
#endif // DUSK_AUDIO_H
|