AuroraRuntime/Source/IO/FS/Resources.hpp

18 lines
399 B
C++
Raw Normal View History

2021-06-27 21:25:29 +00:00
/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: Resources.hpp
Date: 2021-6-16
Author: Reece
***/
#pragma once
namespace Aurora::IO::FS
{
2021-09-06 10:58:08 +00:00
AuOptional<AuString> GetUserLibPath();
AuOptional<AuString> GetSystemLibPath();
AuOptional<AuString> GetUserLibPath2();
AuOptional<AuString> GetSystemLibPath2();
2021-06-27 21:25:29 +00:00
void InitResources();
}