HatchitGraphics
ht_d3d11material.h
1 
25 #pragma once
26 
27 #include <ht_material.h>
28 #include <ht_d3d11vertexshader.h>
29 #include <ht_d3d11pixelshader.h>
30 
31 namespace Hatchit {
32 
33  namespace Graphics {
34 
35  namespace DirectX
36  {
37  class HT_API D3D11Material : public IMaterial
38  {
39  public:
40  D3D11Material();
41 
42  virtual ~D3D11Material();
43  };
44  }
45  }
46 }
Hatchit Engine Copyright(c) 2015-2016 Third-Degree.
Hatchit Engine Copyright(c) 2015-2016 Third-Degree.
Definition: ht_color.h:19
Definition: ht_d3d11material.h:37