aboutsummaryrefslogtreecommitdiff
path: root/graphics/surface-keycolored.h
blob: 43d54132759d8175ce682e8ef5b854e3f007c18e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef GRAPHICS_SURFACE_KEYCOLORED_H
#define GRAPHICS_SURFACE_KEYCOLORED_H

#include "graphics/surface.h"

namespace Graphics {

struct SurfaceKeyColored : Surface {

	void blit(Surface *surf_src, int16 x, int16 y, OverlayColor transparent);
};


} // end of namespace Graphics

#endif