tess 0.4.0
Performance-first tile and path simulation substrate
Loading...
Searching...
No Matches
version.h
1#pragma once
2
3// clang-format off
5#define TESS_VERSION_MAJOR 0
7#define TESS_VERSION_MINOR 4
9#define TESS_VERSION_PATCH 0
10// clang-format on
11
12namespace tess {
13
15struct version {
16 int major;
17 int minor;
18 int patch;
19};
20
22inline constexpr version library_version{
23 TESS_VERSION_MAJOR,
24 TESS_VERSION_MINOR,
25 TESS_VERSION_PATCH,
26};
27
28} // namespace tess
Definition version.h:15