aboutsummaryrefslogtreecommitdiff
path: root/advtrains/models/advtrains_dtrack_bumper_st_30.b3d
diff options
context:
space:
mode:
Diffstat (limited to 'advtrains/models/advtrains_dtrack_bumper_st_30.b3d')
0 files changed, 0 insertions, 0 deletions
/span> 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 UTIL_TIMETAKER_HEADER #define UTIL_TIMETAKER_HEADER #include "../irrlichttypes.h" /* TimeTaker */ class TimeTaker { public: TimeTaker(const char *name, u32 *result=NULL); ~TimeTaker() { stop(); } u32 stop(bool quiet=false); u32 getTime(); private: const char *m_name; u32 m_time1; bool m_running; u32 *m_result; }; #endif