openspades/Sources/Core/Stopwatch.h
2013-08-25 08:21:22 +09:00

24 lines
323 B
C++

//
// Stopwatch.h
// OpenSpades
//
// Created by yvt on 7/14/13.
// Copyright (c) 2013 yvt.jp. All rights reserved.
//
#pragma once
#include <stdint.h>
namespace spades {
class Stopwatch {
double start;
public:
Stopwatch();
void Reset();
/** @return elapsed time in seconds */
double GetTime();
};
}