You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
555 B
39 lines
555 B
/** |
|
* @file interfac.h |
|
* |
|
* Interface of load screens. |
|
*/ |
|
#ifndef __INTERFAC_H__ |
|
#define __INTERFAC_H__ |
|
|
|
DEVILUTION_BEGIN_NAMESPACE |
|
|
|
#ifdef __cplusplus |
|
extern "C" { |
|
#endif |
|
|
|
typedef enum Cutscenes { |
|
CutStart, |
|
CutTown, |
|
CutLevel1, |
|
CutLevel2, |
|
CutLevel3, |
|
CutLevel4, |
|
CutLevel5, |
|
CutLevel6, |
|
CutPortal, |
|
CutPortalRed, |
|
CutGate, |
|
} Cutscenes; |
|
|
|
void interface_msg_pump(); |
|
bool IncProgress(); |
|
void ShowProgress(interface_mode uMsg); |
|
|
|
#ifdef __cplusplus |
|
} |
|
#endif |
|
|
|
DEVILUTION_END_NAMESPACE |
|
|
|
#endif /* __INTERFAC_H__ */
|
|
|