]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/client/target_music.qh
Revert the more visible changes and tweak remaining ones a little to closer match...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / target_music.qh
1 #ifndef TARGET_MUSIC_H
2 #define TARGET_MUSIC_H
3
4 float music_disabled;
5 entity music_default;
6 entity music_target;
7 entity music_trigger;
8 // FIXME also control bgmvolume here, to not require a target_music for the default track.
9
10 .int state;
11 .float lastvol;
12
13 void TargetMusic_Advance();
14
15 void Net_TargetMusic();
16
17 void Ent_TriggerMusic_Think();
18
19 void Ent_TriggerMusic_Remove();
20
21 void Ent_ReadTriggerMusic();
22 #endif