HatchitGraphics
ht_commandpool.h
1 
23 #pragma once
24 
25 #include <ht_platform.h> //HT_API
26 
27 namespace Hatchit
28 {
29  namespace Graphics
30  {
31  class HT_API ICommandPool
32  {
33  public:
34  virtual ~ICommandPool() {}
35 
36  virtual bool VInitialize() = 0;
37  };
38  }
39 }
Hatchit Engine Copyright(c) 2015-2016 Third-Degree.
Definition: ht_color.h:19
Definition: ht_commandpool.h:31