-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathGame.h
40 lines (31 loc) · 1.09 KB
/
Game.h
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
27
28
29
30
31
32
33
34
35
36
37
38
39
#pragma once
#include <d3d11.h>
#include <wrl/client.h>
class Game
{
public:
// Basic OOP setup
Game();
~Game();
Game(const Game&) = delete; // Remove copy constructor
Game& operator=(const Game&) = delete; // Remove copy-assignment operator
// Primary functions
void Update(float deltaTime, float totalTime);
void Draw(float deltaTime, float totalTime);
void OnResize();
private:
// Initialization helper methods - feel free to customize, combine, remove, etc.
void LoadShaders();
void CreateGeometry();
// Note the usage of ComPtr below
// - This is a smart pointer for objects that abide by the
// Component Object Model, which DirectX objects do
// - More info here: https://github.com/Microsoft/DirectXTK/wiki/ComPtr
// Buffers to hold actual geometry data
Microsoft::WRL::ComPtr<ID3D11Buffer> vertexBuffer;
Microsoft::WRL::ComPtr<ID3D11Buffer> indexBuffer;
// Shaders and shader-related constructs
Microsoft::WRL::ComPtr<ID3D11PixelShader> pixelShader;
Microsoft::WRL::ComPtr<ID3D11VertexShader> vertexShader;
Microsoft::WRL::ComPtr<ID3D11InputLayout> inputLayout;
};