Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 257 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 257 Bytes

SDLplus_plus

SDL library wrapped in modern c++

Example usage:

//create window
SDL::Window window(true);

//fill it red
window.fillRect(255, 0, 0);

//draw bitmap on it
SDL::Surface surface("Images\home.bmp");
window.blit(&surface);