direct input fini

Le code ne fonctionne pas encore, il doit être merge avec le tuto 14.
This commit is contained in:
GolfOcean334
2024-03-29 14:38:48 +01:00
parent 41b2b9e024
commit f5554587bd
9 changed files with 214 additions and 225 deletions

View File

@@ -15,6 +15,7 @@
#include "textureshaderclass.h"
#include "spriteclass.h"
#include "timerclass.h"
#include "textclass.h"
/////////////
// GLOBALS //
@@ -37,10 +38,12 @@ public:
bool Initialize(int, int, HWND);
void Shutdown();
bool Frame();
bool Frame(InputClass*);
private:
bool Render(float, float, float, float);
bool UpdateMouseStrings(int, int, bool);
private:
D3DClass* m_Direct3D;
CameraClass* m_Camera;
@@ -52,6 +55,7 @@ private:
BitmapClass* m_Bitmap;
SpriteClass* m_Sprite;
TimerClass* m_Timer;
TextClass* m_MouseStrings;
};
#endif