1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-06 17:41:04 +00:00
luanti/src/client/clientsimpleobject.h

21 lines
392 B
C
Raw Normal View History

// Luanti
// SPDX-License-Identifier: LGPL-2.1-or-later
// Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
#pragma once
2012-06-17 04:00:31 +03:00
#include "irrlichttypes_bloated.h"
class ClientEnvironment;
class ClientSimpleObject
{
protected:
public:
bool m_to_be_removed = false;
ClientSimpleObject() = default;
virtual ~ClientSimpleObject() = default;
virtual void step(float dtime) {}
};