All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ILandmarkRenderableFactory.h
1 #pragma once
2 
3 #include "VectorMathDecl.h"
4 #include "ChunkedFileFormat.h"
5 #include "Rendering.h"
6 #include <string>
7 
8 namespace Eegeo
9 {
10  namespace Resources
11  {
12  namespace Buildings
13  {
15  {
16  public:
17 
19 
20  virtual Rendering::Renderables::CustomLandmarkRenderable* CreateCustomLandmarkRenderable(
21  const dv3& ecefOrigin,
24  const std::string& landmarkMaterialName) = 0;
25  };
26  }
27  }
28 }
29 
30 
31