From e39032d3f1e96c07549c55df0608b2770c470f99 Mon Sep 17 00:00:00 2001 From: Tony Theodore Date: Thu, 25 Jul 2013 20:55:43 +1000 Subject: package sfml: cleanup style in test program --- src/sfml-test.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/sfml-test.cpp b/src/sfml-test.cpp index 5c08538..1fc07e8 100644 --- a/src/sfml-test.cpp +++ b/src/sfml-test.cpp @@ -13,17 +13,17 @@ int main() { // Create the main window RenderWindow window(VideoMode(800, 600), "SFML window"); - + Music music; Texture texture; Font font; Text text; TcpSocket socket; - + CircleShape shape(200); shape.setPosition(200, 100); shape.setFillColor(Color::Red); - + while (window.isOpen()) { // Process events @@ -41,6 +41,6 @@ int main() // Update the window window.display(); } - + return 0; } -- cgit v0.12