]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/gamemodes/gamemode/gungame/sv_gungame.qh
Merge branch 'master' into Lyberta/GunGame
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / gamemodes / gamemode / gungame / sv_gungame.qh
1 /// \file
2 /// \brief Header file that describes the GunGame gamemode.
3 /// \copyright GNU GPLv2 or any later version.
4
5 #pragma once
6
7 /// \brief Initializes global data for the gametype.
8 void GunGame_Initialize();
9
10 REGISTER_MUTATOR(gg, false)
11 {
12         MUTATOR_STATIC();
13         MUTATOR_ONADD
14         {
15                 GunGame_Initialize();
16         }
17         return 0;
18 }