summaryrefslogtreecommitdiffstats
path: root/src/sfml-test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/sfml-test.cpp')
-rw-r--r--src/sfml-test.cpp8
1 files 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;
}