]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/campaign.qh
f5228c269338cd146e6c4656a45044185e59c56b
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / campaign.qh
1 #ifndef CAMPAIGN_H
2 #define CAMPAIGN_H
3
4 // this must be included BEFORE campaign_common.h to make this a memory saving
5 #define CAMPAIGN_MAX_ENTRIES 2
6
7 string campaign_message;
8
9 void CampaignPreInit();
10 void CampaignPostInit();
11 void CampaignPreIntermission();
12 void CampaignPostIntermission(); // must change map
13
14 void CampaignLevelWarp(float n);
15
16 float campaign_bots_may_start;
17 // campaign mode: bots shall spawn but wait for the player to spawn before they do anything
18 // in other game modes, this is ignored
19 #endif