/* * Copyright (C) 2013 Antony Woods * 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 */ #pragma once #include namespace entityx { namespace help { class Timer { public: Timer(); ~Timer(); void restart(); double elapsed(); private: std::chrono::time_point _start; }; } // namespace help } // namespace entityx