]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/gamemodes/gamemode/mayhem/sv_mayhem.qh
Merge branch 'terencehill/playerlist_layout' into 'master'
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / gamemodes / gamemode / mayhem / sv_mayhem.qh
1 #pragma once
2
3 #include <common/mutators/base.qh>
4
5 void mayhem_Initialize();
6
7 REGISTER_MUTATOR(mayhem, false)
8 {
9         MUTATOR_STATIC();
10         MUTATOR_ONADD
11         {
12                 mayhem_Initialize();
13         }
14         return 0;
15 }
16
17 void MayhemCalculatePlayerScore(entity scorer);