Fps.h 115 Bytes
Newer Older
Nianchen Deng's avatar
sync    
Nianchen Deng committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once


class Fps {
public:
	Fps();
	void update();

private:
	float _t;
	int _n_frames;

};