Adding the SFML to the CMake libraries

This commit is contained in:
AnonymusRaccoon
2020-01-31 10:52:55 +01:00
parent a1c055920c
commit 15fb1c2cf1
4 changed files with 18 additions and 10 deletions
+2 -2
View File
@@ -27,8 +27,8 @@ namespace ComSquare::Renderer
//! @brief Update the screen by printing the buffer.
void drawScreen() override;
//! @brief Add a pixel to the buffer to the coordinates x, y with the color rgba.
//! @param X : horizontal index.
//! @param Y : vertical index.
//! @param X horizontal index.
//! @param Y vertical index.
//! @param rgba : The color of the pixel.
void putPixel(int x, int y, uint8_t rgba) override ;
};