mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-01 17:38:41 +00:00
20 lines
392 B
C++
20 lines
392 B
C++
// Luanti
|
|
// SPDX-License-Identifier: LGPL-2.1-or-later
|
|
// Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
|
|
|
#pragma once
|
|
|
|
#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) {}
|
|
};
|