mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
18 lines
337 B
C
18 lines
337 B
C
#ifndef __sound_h
|
|
#define __sound_h
|
|
|
|
#define CHAN_AUTO 0
|
|
#define CHAN_WEAPON 1
|
|
#define CHAN_VOICE 2
|
|
#define CHAN_ITEM 3
|
|
#define CHAN_BODY 4
|
|
#define CHAN_NO_PHS_ADD 8
|
|
|
|
#define ATTN_NONE 0
|
|
#define ATTN_NORM 1
|
|
#define ATTN_IDLE 2
|
|
#define ATTN_STATIC 3
|
|
|
|
@extern void(entity e, float chan, string samp, float vol, float atten) sound;
|
|
|
|
#endif
|