Maze Builder Docs 6.7.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 = "'1061001'";
10 static inline const std::string Timestamp = "2025-06-28T14:08:06";
11 static inline const std::string Version = "6.7.5";
12};
13
14}
15
16#endif // buildinfo.h
17
Namespace for the maze builder.
Definition algo_interface.h:9
Definition buildinfo.h:8