All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
BlueSphereConfiguration.h
1 #pragma once
2 
3 #include "BlueSphere.h"
4 #include <string>
5 
6 namespace Eegeo
7 {
8  namespace BlueSphere
9  {
11  {
13  : CreateViews(false)
14  {
15  }
16 
17  std::string DayTextureFilename;
18  std::string NightTextureFilename;
19  std::string SphereModelFilename;
20  std::string StalkModelFilename;
21  bool CreateViews;
22  };
23  }
24 }
25 
26