1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-12 16:15:20 +02:00
Files
luanti/src/client/clientsimpleobject.h
2025-08-02 10:07:45 +02:00

20 lines
367 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 ClientSimpleObject
{
protected:
public:
bool m_to_be_removed = false;
ClientSimpleObject() = default;
virtual ~ClientSimpleObject() = default;
virtual void step(float dtime) {}
};