mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
For more info, see http://www.ja-galaxy-forum.com/ubbthreads.php/topics/334918#Post334918 Requires GameDir >= r2099. Does not break savegame compatibility. git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@7384 3b4a5df2-a311-0410-b5c6-a8a6f20db521
34 lines
1.0 KiB
C
34 lines
1.0 KiB
C
#ifndef __CAMPAIGNHISTORY_MAIN_H
|
|
#define __CAMPAIGNHISTORY_MAIN_H
|
|
|
|
/**
|
|
* @file
|
|
* @author Flugente (bears-pit.com)
|
|
*/
|
|
|
|
#define CAMPHIS_FONT_COLOR 2
|
|
#define CAMPHIS_FONT_COLOR_RED FONT_MCOLOR_RED
|
|
#define CAMPHIS_FONT_BIG FONT14ARIAL
|
|
#define CAMPHIS_FONT_MED FONT12ARIAL
|
|
#define CAMPHIS_FONT_SMALL FONT10ARIAL
|
|
|
|
#define CAMPHIS_FONT_SHADOW FONT_MCOLOR_WHITE
|
|
|
|
#define CAMPAIGN_HISTORY_LINK_START_X LAPTOP_SCREEN_UL_X
|
|
#define CAMPAIGN_HISTORY_LINK_START_Y LAPTOP_SCREEN_WEB_UL_Y + 5
|
|
#define CAMPAIGN_HISTORY_LINK_TEXT_WIDTH 107
|
|
#define CAMPAIGN_HISTORY_LINK_STEP_Y 14
|
|
|
|
void GameInitCampaignHistory();
|
|
BOOLEAN EnterCampaignHistory();
|
|
void ExitCampaignHistory();
|
|
void HandleCampaignHistory();
|
|
void RenderCampaignHistory();
|
|
|
|
BOOLEAN InitCampaignHistoryDefaults();
|
|
void DisplayCampaignHistoryDefaults();
|
|
void RemoveCampaignHistoryDefaults();
|
|
void GetCampaignHistoryText( UINT8 ubNumber, STR16 pString );
|
|
|
|
#endif //__CAMPAIGNHISTORY_MAIN_H
|