/*** Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved. File: Resources.hpp Date: 2021-6-10 Author: Reece ***/ #pragma once namespace Aurora::IO::FS { /** Suffixes a global read/writable path with nameSpace and a splitter */ AUKN_SYM bool GetSystemDomain(AuString& path); /** Suffixes a global read/writable path with within a home/sandbox directory */ AUKN_SYM bool GetProfileDomain(AuString& path); AUKN_SYM bool GetSystemResourcePath(const AuString& fileName, AuString& path); }