Added Entityx to project

This commit is contained in:
Julian Nießner
2018-05-10 23:36:35 +02:00
parent 50fe9dbe02
commit 9083487ac9
58 changed files with 15308 additions and 1 deletions

View File

@@ -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