All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
DrawDebugScreenTextCommand.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Command.h"
6 #include "Commands.h"
7 #include "DebugRenderer.h"
8 
9 namespace Eegeo
10 {
11  namespace Debug
12  {
13  namespace Commands
14  {
15  namespace Rendering
16  {
18  {
19  public:
20 
22 
23  bool TryExecute(const std::vector<std::string>& arguments,
24  const ICommandTerminalOutput& commandTerminal) const;
25 
26  private:
27 
28  DebugRendering::DebugRenderer& m_debugRenderer;
29  };
30  }
31  }
32  }
33 }