Maze Builder Docs 6.0.1
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 = "'4ec880d'";
10 static inline const std::string Timestamp = "2025-04-05T13:50:18";
11 static inline const std::string Version = "6.0.1";
12};
13
14}
15
16#endif // buildinfo.h
17
Namespace for the maze builder.
Definition algo_interface.h:9
Definition buildinfo.h:8