Elaztek Developer Hub
Blamite Game Engine - Tool (Library)
A command-line utility that aids in the creation of Blamite Cache (.map) Files.
utils.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 
5 #ifdef TOOL_LIB_EXPORTS
6 #define TOOL_LIB_API __declspec(dllexport)
7 #else
8 #define TOOL_LIB_API __declspec(dllimport)
9 #endif
10 
14 namespace BlamTool::Utils
15 {
22  TOOL_LIB_API std::string GetProjectRoot();
23 }
BlamTool::Utils
Namespace containing functions for Tool's command-line input.
Definition: utils.h:14
utils.h
TOOL_LIB_API
#define TOOL_LIB_API
Definition: utils.h:8
BlamTool::Utils::GetProjectRoot
TOOL_LIB_API std::string GetProjectRoot()
Retrieves the current project root.
Definition: utils.cpp:6