devilutionX/Source/render.h
Gleb Mazovetskiy 83ce7c27af Enginify trans_rect
Moves `trans_rect` to `engine` as `DrawHalfTransparentRectTo` and makes
it operate on `CelOutputBuf`.
2021-03-03 12:07:07 +01:00

24 lines
381 B
C

/**
* @file render.h
*
* Interface of functionality for rendering the level tiles.
*/
#ifndef __RENDER_H__
#define __RENDER_H__
DEVILUTION_BEGIN_NAMESPACE
#ifdef __cplusplus
extern "C" {
#endif
void RenderTile(BYTE *pBuff);
void world_draw_black_tile(int sx, int sy);
#ifdef __cplusplus
}
#endif
DEVILUTION_END_NAMESPACE
#endif /* __RENDER_H__ */