Files
WickedEngine/WickedEngine/wiFrameRate.h
T
2015-07-26 20:53:16 +02:00

20 lines
236 B
C++

#pragma once
#include "CommonInclude.h"
#include "wiTimer.h"
class wiTimer;
class wiFrameRate
{
protected:
static wiTimer timer;
static double dt;
public:
static void Initialize();
static void Frame();
static double FPS();
};