All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
IInteriorsTextureResourceProvider.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Interiors.h"
6 #include <string>
7 
8 namespace Eegeo
9 {
10  namespace Resources
11  {
12  namespace Interiors
13  {
15  {
16  public:
18 
19  virtual bool Contains(const std::string& textureName) const = 0;
20 
21  virtual IInteriorsTextureResource* Get(const std::string& interiorIdentifier,
22  const std::string& textureName,
23  bool isCube) = 0;
24  };
25  }
26  }
27 }