summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2013-07-25 10:55:43 (GMT)
committerTony Theodore <tonyt@logyst.com>2013-07-25 10:55:43 (GMT)
commite39032d3f1e96c07549c55df0608b2770c470f99 (patch)
treec7dcaa4a47c5e27dbe6072dfc97d109274fd068b
parent35cd662d6875de67d0b16b81d06d7494cd2d7791 (diff)
downloadmxe-e39032d3f1e96c07549c55df0608b2770c470f99.zip
mxe-e39032d3f1e96c07549c55df0608b2770c470f99.tar.gz
mxe-e39032d3f1e96c07549c55df0608b2770c470f99.tar.bz2
package sfml: cleanup style in test program
-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;
}