[BACK]Return to tiles.h CVS log [TXT][DIR] Up to [contributed] / brogue-ce / src / platform

File: [contributed] / brogue-ce / src / platform / tiles.h (download)

Revision 1.1, Thu May 27 20:31:42 2021 UTC (3 years ago) by rubenllorente
Branch point for: MAIN

Initial revision

#ifndef __TILES_H__
#define __TILES_H__

#include <SDL.h>

void initTiles();
void resizeWindow(int width, int height);
void updateTile(int row, int column, short charIndex,
    short foreRed, short foreGreen, short foreBlue,
    short backRed, short backGreen, short backBlue);
void updateScreen();
SDL_Surface *captureScreen();

#endif