Cleanup in content_mapblock (#5746)
[oweals/minetest.git] / src / clientsimpleobject.h
index 9dd8cc472e3b59c2281cb903d547f25706d17982..f5b79b64f27cbf4f82c8532a177f8a77bb161538 100644 (file)
@@ -1,6 +1,6 @@
 /*
-Minetest-c55
-Copyright (C) 2012 celeron55, Perttu Ahola <celeron55@gmail.com>
+Minetest
+Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU Lesser General Public License as published by
@@ -29,10 +29,9 @@ protected:
 public:
        bool m_to_be_removed;
 
-       ClientSimpleObject(): m_to_be_removed(false) {}
-       virtual ~ClientSimpleObject(){}
-       virtual void step(float dtime){}
+       ClientSimpleObject() : m_to_be_removed(false) {}
+       virtual ~ClientSimpleObject() {}
+       virtual void step(float dtime) {}
 };
 
 #endif
-