Fix Lint broken by b662a4577d692329b9ca83525e6039f2ddcd1ac1
[oweals/minetest.git] / src / clientsimpleobject.h
index 21e42b4cbed88f4a16da0bbb3d25fb22c575f84f..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
@@ -20,7 +20,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #ifndef CLIENTSIMPLEOBJECT_HEADER
 #define CLIENTSIMPLEOBJECT_HEADER
 
-#include "irrlichttypes.h"
+#include "irrlichttypes_bloated.h"
 class ClientEnvironment;
 
 class ClientSimpleObject
@@ -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
-