Ocular Engine
RenderType.hpp
1 
17 #pragma once
18 #ifndef __H__OCULAR_GRAPHICS_RENDER_TYPE__H__
19 #define __H__OCULAR_GRAPHICS_RENDER_TYPE__H__
20 
21 //------------------------------------------------------------------------------------------
22 
27 namespace Ocular
28 {
33  namespace Graphics
34  {
35  enum class RenderType
36  {
37  None = 0,
38  Opaque,
39  Transparent
40  };
41  }
45 }
50 //------------------------------------------------------------------------------------------
51 
52 #endif
Note: Once this library is made dynamic, this will no longer be needed.
Definition: Common.hpp:70