⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mrinputmanager.h

📁 Games programming all in one code chapter 18
💻 H
字号:
 /* 'mrInputManager.h' */

 /* Mirus base types header */
#include "mrDatatypes.h"
 /* Mirus error definitions header */
#include "mrError.h"
 /* Windows header file */
#include <windows.h>
 /* Direct Music header file */
#include <dinput.h>
/* Assert header file */
#include <assert.h> 

 /* Include this file only once */
#pragma once

 /* Mirus Input Manager class */
class mrInputManager
{
protected:
  /* DirectInput objects */
 LPDIRECTINPUT8         m_lpkDInput;

  /* Singleton */
 static mrInputManager * m_pkSingleton;

public:
  /* Constructors / Destructor */
 mrInputManager (void);
 ~mrInputManager (void);

  /* Input devices manipulation routines */
 mrError32 Init (HINSTANCE hInstance);
 LPDIRECTINPUT8 GetInput (void);

  /* Singleton */
 static mrInputManager * GetSingleton (void);
};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -