Files
EHS/src/system/BaseSystem.cpp
Karutoh bce48fe121
All checks were successful
Build & Release / Windows-AMD64-Build (push) Successful in 6m9s
Build & Release / Linux-AMD64-Build (push) Successful in 15m26s
Build & Release / Linux-AARCH64-Build (push) Successful in 45m54s
Fixed "System::OpenURI". Added SHA256. Added URI safe Base64 methods.
2025-05-11 19:43:50 -07:00

19 lines
261 B
C++

#include "ehs/system/BaseSystem.h"
namespace ehs
{
void BaseSystem::OpenURI(Str_8 uri)
{
}
Str_8 BaseSystem::OpenFileDialog(const Str_8 &dir, const Str_8 &filters)
{
return {};
}
Str_8 BaseSystem::GetDirDialog(const Str_8 &dir)
{
return {};
}
}