Mountain  1.0.0
Simple C++ 2D Game Framework
run_length_encoding.hpp
1 #pragma once
2 
3 #include "Mountain/core.hpp"
4 
5 #include <string>
6 
7 namespace Mountain
8 {
10  {
11  public:
12  static std::string Encode(const std::string& str);
13  static std::string Decode(const std::string& data);
14  };
15 }
Contains all declarations of the Mountain Framework.
Definition: audio.hpp:22