HatchitGraphics
ht_device.h
1 
15 #pragma once
16 
17 #include <ht_platform.h>
18 
19 namespace Hatchit
20 {
21  namespace Graphics
22  {
27  class HT_API IDevice
28  {
29  public:
30  virtual ~IDevice() { };
31 
32  virtual bool VInitialize() = 0;
33  virtual void VReportDeviceInfo() = 0;
34  };
35  }
36 }
Hatchit Engine Copyright(c) 2015-2016 Third-Degree.
Definition: ht_color.h:19
Interface outlining implementation for GPU Device.
Definition: ht_device.h:27