SA_Support
Sapphire's Suite's C++ Support library.
Loading...
Searching...
No Matches
Version.hpp
Go to the documentation of this file.
1// Copyright (c) 2023 Sapphire's Suite. All Rights Reserved.
2
3#pragma once
4
5#ifndef SAPPHIRE_SUPPORT_VERSION_GUARD
6#define SAPPHIRE_SUPPORT_VERSION_GUARD
7
28#define SA_MAKE_VERSION(_major, _minor, _patch) (_major * 10000 + _minor * 100 + _patch)
29
30
33#endif // GUARD