/* * ORXONOX - the hottest 3D action shooter ever to exist * > www.orxonox.net < * * * License notice: * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU 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. * * Author: * Fabian 'x3n' Landau * Co-authors: * ... * */ /*! @file @brief Declaration of the Tickable interface. The Tickable interface provides a tick(dt) function, that gets called every frame. float dt is the time since the last frame in seconds. Attention: Classes derived from a Tickable that want to have a tick(dt) function on their part, MUST call the parent::tick(dt) function explicitly in their implementation of tick(dt) because it's a virtual function. */ #ifndef _Tickable_H__ #define _Tickable_H__ #include "tools/ToolsPrereqs.h" #include "core/class/OrxonoxInterface.h" #include "core/class/Super.h" namespace orxonox { //! The Tickable interface provides a tick(dt) function, that gets called every frame. class _ToolsExport Tickable : virtual public OrxonoxInterface { public: /** @brief Gets called every frame. @param dt The time since the last frame in seconds */ virtual void tick(float dt) { } protected: Tickable(); }; SUPER_FUNCTION(1, Tickable, tick, true); } #endif /* _Tickable_H__ */