// BlockyFroggy // Copyright © 2017 John Ryland. // All rights reserved. #pragma once #ifndef DEBUG_H #define DEBUG_H #include <map> #include <string> void setDebugValue(const char* variableName, int val); void setDebugValue(const char* variableName, float val); void setDebugValue(const char* variableName, const char* val); const std::map<std::string,std::string>& getDebugVariables(); #endif // DEBUG_h