tess
0.4.0
Performance-first tile and path simulation substrate
Toggle main menu visibility
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
12
namespace
tess {
13
15
struct
version
{
16
int
major;
17
int
minor;
18
int
patch;
19
};
20
22
inline
constexpr
version
library_version{
23
TESS_VERSION_MAJOR,
24
TESS_VERSION_MINOR,
25
TESS_VERSION_PATCH,
26
};
27
28
}
// namespace tess
tess::version
Definition
version.h:15
build
docs-api
generated
include
tess
version.h
Generated by
1.17.0