Maze Builder Docs 6.3.5
Loading...
Searching...
No Matches
buildinfo.h
1#ifndef BUILDINFO_H
2#define BUILDINFO_H
3
4#include <string>
5
6namespace mazes {
7
8struct build_info {
9 static inline const std::string CommitSHA = "'dea6126'";
10 static inline const std::string Timestamp = "2025-05-31T12:54:28";
11 static inline const std::string Version = "6.3.5";
12};
13
14}
15
16#endif // buildinfo.h
17
Namespace for the maze builder.
Definition algo_interface.h:9
Definition buildinfo.h:8