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(){}virtualvoidstep(float dtime){}};#endif