SPARK  0.1.0
A general purpose game engine written in C++.
Loading...
Searching...
No Matches
Paths.h
1#pragma once
2
3#include "spark/path/Export.h"
4
5#include <filesystem>
6
7namespace spark::path
8{
13 [[nodiscard]] std::filesystem::path SPARK_PATH_EXPORT executable_path();
14
19 std::string SPARK_PATH_EXPORT executable_name();
20
25 [[nodiscard]] std::filesystem::path SPARK_PATH_EXPORT engine_assets_path();
26
31 [[nodiscard]] std::filesystem::path SPARK_PATH_EXPORT assets_path();
32}