Luanti 5.15.0-dev
 
Loading...
Searching...
No Matches
clientsimpleobject.h
Go to the documentation of this file.
1// Luanti
2// SPDX-License-Identifier: LGPL-2.1-or-later
3// Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5#pragma once
6
8
10{
11protected:
12public:
13 bool m_to_be_removed = false;
14
15 ClientSimpleObject() = default;
16 virtual ~ClientSimpleObject() = default;
17
18 virtual void step(float dtime) {}
19};
Definition clientsimpleobject.h:10
ClientSimpleObject()=default
bool m_to_be_removed
Definition clientsimpleobject.h:13
virtual ~ClientSimpleObject()=default
virtual void step(float dtime)
Definition clientsimpleobject.h:18