diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-10 21:26:13 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-10 21:26:13 -0500 |
commit | f800dbc034e7a70a613bab8cd9d147be4f6e88b6 (patch) | |
tree | c8714ddc8f6712f07d921c08fd92ae8ef228494b /entityx/help/Timer.h | |
parent | c6651145a4a6e6611b585c1a87c127f38751db4b (diff) |
windows build
Diffstat (limited to 'entityx/help/Timer.h')
-rw-r--r-- | entityx/help/Timer.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/entityx/help/Timer.h b/entityx/help/Timer.h new file mode 100644 index 0000000..4d22b08 --- /dev/null +++ b/entityx/help/Timer.h @@ -0,0 +1,29 @@ +/* + * Copyright (C) 2013 Antony Woods <antony@teamwoods.org> + * All rights reserved. + * + * This software is licensed as described in the file COPYING, which + * you should have received as part of this distribution. + * + * Author: Antony Woods <antony@teamwoods.org> + */ +#pragma once + +#include <chrono> + +namespace entityx { +namespace help { + +class Timer { +public: + Timer(); + ~Timer(); + + void restart(); + double elapsed(); +private: + std::chrono::time_point<std::chrono::system_clock> _start; +}; + +} // namespace help +} // namespace entityx |