diff --git a/main.cpp b/main.cpp index b2f64b8..365b604 100644 --- a/main.cpp +++ b/main.cpp @@ -7,6 +7,9 @@ int main() // Create the main window sf::RenderWindow window(sf::VideoMode(width, height), "Game of Life"); + sf::CircleShape shape(50.f); + shape.setFillColor(sf::Color(100, 250, 50)); + // Main Loop while (window.isOpen()) { @@ -19,5 +22,13 @@ int main() window.close(); } } + + window.clear(sf::Color::Black); + + // Display Stuff + window.draw(shape); + window.display(); } + + return 0; } \ No newline at end of file diff --git a/main.o b/main.o index 3551add..bcde543 100644 Binary files a/main.o and b/main.o differ diff --git a/sfml-app b/sfml-app index c401df7..22a06b0 100755 Binary files a/sfml-app and b/sfml-app differ