-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHDRgame.h
More file actions
26 lines (21 loc) · 819 Bytes
/
Copy pathHDRgame.h
File metadata and controls
26 lines (21 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*==========================================================================================================================================================
ヒップドロップゲーム画面処理[HDRgame.cpp]
Author:藤原龍輝
============================================================================================================================================================*/
#ifndef _HDR_GAME_H_
#define _HDR_GAME_H_
#include "main.h"
#include "time.h"
//プロト
void InitHDRGame(void);
void UninitHDRGame(void);
void UpdateHDRGame(void);
void DrawHDRGame(void);
int SetUseController_HDR(void);
bool GetUseController_HDR(int nPadNum);
int GetUseControllerNum_HDR(void);
void SetEnablePause_HDR(bool pause);
bool CheckUseController_HDR(CHECKMODE mode);
void ChangeNumCamera_HDR(void);
float HipDropBuff(void);
#endif