#pragma once // this must be included BEFORE campaign_common.h to make this a memory saving #define CAMPAIGN_MAX_ENTRIES 2 int Campaign_GetLevelNum(); string Campaign_GetMessage(); void CampaignPreInit(); void CampaignPostInit(); void CampaignPreIntermission(); void CampaignPostIntermission(); // must change map void CampaignLevelWarp(float n); /** * campaign mode: bots shall spawn but wait for the player to spawn before they do anything * in other game modes, this is ignored */ bool campaign_bots_may_start; bool campaign_forcewin;