All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
MapDebugModule.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Types.h"
6 #include "Streaming.h"
7 #include "DebugDecl.h"
8 
9 namespace Eegeo
10 {
11  namespace Modules
12  {
13  namespace Map
14  {
16  {
17  public:
18 
19  MapDebugModule(const Streaming::ResourceCeilingProvider& resourceCeilingProvider);
20  ~MapDebugModule();
21 
22  Debug::SplinePlayback::DebugCameraSplinePlaybackService& GetDebugCameraSplinePlaybackService() const;
23 
24  void Update(float dt);
25 
26  private:
27 
28  Debug::SplinePlayback::DebugCameraSplinePlaybackService* m_pDebugCameraSplinePlaybackService;
29  };
30  }
31  }
32 }