You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
444 B
16 lines
444 B
#pragma once
|
|
|
|
#include <string>
|
|
#include "declarations.h"
|
|
#include "logger.h"
|
|
#include "eigen.h"
|
|
|
|
namespace da {
|
|
void Terminate(const std::string &message);
|
|
void Assert(bool condition, const std::string &message = "");
|
|
auto WorkplacePath() -> fs_path;
|
|
auto WorkingAssetDirectoryPath() -> fs_path;
|
|
auto WorkingResultDirectoryPath() -> fs_path;
|
|
auto ProjectSourcePath() -> fs_path;
|
|
auto ProjectAssetDirectoryPath() -> fs_path;
|
|
} // namespace da
|
|
|