aboutsummaryrefslogtreecommitdiff
path: root/src/script/cpp_api/s_node.h
diff options
context:
space:
mode:/* Minetest Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com&/minetest.git/diff/?h=release&id=57218aa9d1cdfcbb101987591b60beb6ab766ca9'>Diffstat (limited to 'src/script/cpp_api/s_node.h')
0 files changed, 0 insertions, 0 deletions
even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef CLIENTSIMPLEOBJECT_HEADER #define CLIENTSIMPLEOBJECT_HEADER #include "irrlichttypes_bloated.h" class ClientEnvironment; class ClientSimpleObject { protected: public: bool m_to_be_removed; ClientSimpleObject(): m_to_be_removed(false) {} virtual ~ClientSimpleObject(){} virtual void step(float dtime){} }; #endif