mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
14 lines
178 B
C++
14 lines
178 B
C++
#include "StringConv.h"
|
|
|
|
namespace RBX {
|
|
|
|
std::string utf8_encode(const std::string &path)
|
|
{
|
|
return path;
|
|
}
|
|
std::string utf8_decode(const std::string &path)
|
|
{
|
|
return path;
|
|
}
|
|
|
|
} |