OSDN Git Service

ちょっとしたバグを修正
[awarsiii/AwarsIV.git] / Awars III / FPS.h
1 //
2 //  FPS.h
3 //  Awars III
4 //
5 //  Created by 桐谷 諭史 on 2016/02/01.
6 //  Copyright © 2016年 Killery. All rights reserved.
7 //
8
9 #import <Foundation/Foundation.h>
10 #import <Cocoa/Cocoa.h>
11
12
13 @interface FPS : NSObject
14 {
15     NSTimer *timer;
16 }
17
18 bool CtrlFPS(double num);
19 int GetFrameRate();
20 int GetFrameRateMAX();
21 @end