All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
MaterialSelectionModelEntry.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Types.h"
6 #include "Collision.h"
7 #include "CollisionVisualization.h"
8 
9 #include <string>
10 
11 namespace Eegeo
12 {
13  namespace CollisionVisualization
14  {
16  {
17  public:
18  MaterialSelectionModelEntry(const std::string& materialPrefix)
19  : m_materialPrefix(materialPrefix)
20  , m_flashing(false)
21  {}
22 
23  const std::string& MaterialPrefix() const { return m_materialPrefix; }
24  bool IsFlashing() const { return m_flashing; }
25  void SetFlashing(bool enabled) { m_flashing = enabled; }
26  private:
27  std::string m_materialPrefix;
28  bool m_flashing;
29  };
30  }
31 }