mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-24 18:56:33 +00:00
e2a2a672f5
- fixed bug with parsing modifiers in VirtualKeyboardParser - fixed numerous GCC warnings svn-id: r33448
18 lines
288 B
C++
18 lines
288 B
C++
|
|
#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
|