All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
IBatchedIconRenderableFactory.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Types.h"
6 #include "Rendering.h"
7 #include "LayerIds.h"
8 #include "Icons.h"
9 
10 namespace Eegeo
11 {
12  namespace Icons
13  {
15  {
16  public:
18  virtual BatchedScreenIconRenderable* Create(Rendering::Materials::IMaterial& material, const Rendering::SortKey& sortKey, BatchedScreenIconRenderable* pPrimaryRenderable) = 0;
19 
20  };
21 
23  {
24  public:
26  virtual BatchedWorldIconRenderable* Create(Rendering::Materials::IMaterial& material, const Rendering::SortKey& sortKey, BatchedWorldIconRenderable* pPrimaryRenderable) = 0;
27 
28  };
29  }
30 }