source: trunk/src/timer.h @ 2183

Last change on this file since 2183 was 2183, checked in by sam, 10 years ago

build: fix the WTFPL site URL in all code comments.

  • Property svn:keywords set to Id
File size: 660 bytes
Line 
1//
2// Lol Engine
3//
4// Copyright: (c) 2010-2011 Sam Hocevar <sam@hocevar.net>
5//   This program is free software; you can redistribute it and/or
6//   modify it under the terms of the Do What The Fuck You Want To
7//   Public License, Version 2, as published by Sam Hocevar. See
8//   http://www.wtfpl.net/ for more details.
9//
10
11//
12// The Timer class
13// ---------------
14//
15
16#if !defined __LOL_TIMER_H__
17#define __LOL_TIMER_H__
18
19namespace lol
20{
21
22class TimerData;
23
24class Timer
25{
26public:
27    Timer();
28    ~Timer();
29
30    float Get();
31    float Poll();
32    void Wait(float seconds);
33
34private:
35    TimerData *data;
36};
37
38} /* namespace lol */
39
40#endif // __LOL_TIMER_H__
41
Note: See TracBrowser for help on using the repository browser.