您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

25 行
310 B

#ifndef __FPSMANAGER_H
#define __FPSMANAGER_H
#include <SDL.h>
namespace segl {
class FPSManager {
private:
Uint32 lastticks;
int frames;
float tickrate;
float framerate;
public:
FPSManager(int _fps);
void setFPS(int _fps);
void delay();
float getFPS();
};
} // namespace segl
#endif