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.
19 lines
633 B
19 lines
633 B
/** |
|
* @file town.h |
|
* |
|
* Interface of functionality for rendering the town, towners and calling other render routines. |
|
*/ |
|
#ifndef __TOWN_H__ |
|
#define __TOWN_H__ |
|
|
|
void town_draw_clipped_town(BYTE *pBuff, int sx, int sy, int dx, int dy, int eflag); |
|
void town_draw_clipped_town_2(BYTE *pBuff, int sx, int sy, int row, int CelSkip, int dx, int dy, int eflag); |
|
void town_draw_town_all(BYTE *pBuff, int x, int y, int row, int CelCap, int sx, int sy, int eflag); |
|
void T_DrawView(int StartX, int StartY); |
|
#ifdef HELLFIRE |
|
void town_4751C6(); |
|
void town_475595(); |
|
#endif |
|
void CreateTown(int entry); |
|
|
|
#endif /* __TOWN_H__ */
|
|
|