mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
requires GameDir >= r1901. For more info, see http://www.bears-pit.com/board/ubbthreads.php/topics/329205.html#Post329205 git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@6705 3b4a5df2-a311-0410-b5c6-a8a6f20db521
30 lines
949 B
C
30 lines
949 B
C
#ifndef __CAMPAIGNHISTORY_SUMMARY_H
|
|
#define __CAMPAIGNHISTORY_SUMMARY_H
|
|
|
|
/**
|
|
* @file
|
|
* @author Flugente (bears-pit.com)
|
|
*/
|
|
|
|
// webpage displaying a summary of events
|
|
void GameInitCampaignHistorySummary();
|
|
BOOLEAN EnterCampaignHistorySummary();
|
|
void ExitCampaignHistorySummary();
|
|
void HandleCampaignHistorySummary();
|
|
void RenderCampaignHistorySummary();
|
|
|
|
// webpage displaying most important incidents
|
|
void GameInitCampaignHistory_MostImportant();
|
|
BOOLEAN EnterCampaignHistory_MostImportant();
|
|
void ExitCampaignHistory_MostImportant();
|
|
void HandleCampaignHistory_MostImportant();
|
|
void RenderCampaignHistory_MostImportant();
|
|
|
|
// webpage displaying most recent incidents (not useable for the time being)
|
|
void GameInitCampaignHistory_News();
|
|
BOOLEAN EnterCampaignHistory_News();
|
|
void ExitCampaignHistory_News();
|
|
void HandleCampaignHistory_News();
|
|
void RenderCampaignHistory_News();
|
|
|
|
#endif // __CAMPAIGNHISTORY_SUMMARY_H
|