aboutsummaryrefslogtreecommitdiff
path: root/lib
Commit message (Expand)AuthorAge
* Windows: Cpack wix installer (#6153)adrido2018-10-26
* Update embedded Lua to 5.1.5 (#7387)sfan52018-05-30
* Update jsoncpp to 1.8.4 (#7172)Loïc Blot2018-03-26
* Update JsonCPP to 1.8.3 (#6466)Loïc Blot2017-09-26
* JsonCPP update from 0.10.6 to 1.8.0Loic Blot2017-06-04
* Fix cmake library default build problem since moving to lib/Loic Blot2017-04-07
* Add the REQUIRE_LUAJIT option (#5526)YuGiOhJCJ2017-04-07
* Update embedded jsoncpp from unk version to 0.10.6 + move libs to lib/ instea...Loïc Blot2017-04-02
n class="hl com">You should have received a copy of 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(){} virtual void step(float dtime){} }; #endif