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
797 B
39 lines
797 B
#pragma once |
|
|
|
|
|
/* |
|
extern int totalFrames; |
|
//extern SDL_Texture* spriteSheet; |
|
extern SDL_Surface* DiabloTitle; |
|
extern SDL_Event input; |
|
extern FC_Font* font; |
|
extern int SCREEN_WIDTH; |
|
extern int SCREEN_HEIGHT; |
|
extern int TotalPlayers; |
|
|
|
|
|
extern SDL_Rect textureRect; |
|
extern SDL_Rect windowRect; |
|
|
|
|
|
//Menu0 //Main Menu rects |
|
extern SDL_Rect SinglePlrBox; |
|
extern SDL_Rect MultiPlrBox; |
|
extern SDL_Rect ReplayIntroBox; |
|
extern SDL_Rect ShowCreditsBox; |
|
extern SDL_Rect ExitBox; |
|
|
|
//Menu2 // Single player menu rects |
|
extern SDL_Rect SinglePlayerMenuCancelBox; |
|
|
|
|
|
void CreateDiabloMainMenuz(); |
|
void SdlDiabloMainWindow(); |
|
void SDL_RenderDiabloMainPage(); |
|
char *GetWorkingDirectory(); |
|
void CreateMainDiabloMenu(); |
|
void SDLCreateDiabloCursor(); |
|
void SDL_RenderDiabloSinglePlayerPage(); |
|
void RenderCharNames(); |
|
|
|
*/ |