inkcpp
Loading...
Searching...
No Matches
version.h
1/* Copyright (c) 2024 Julian Benda
2 *
3 * This file is part of inkCPP which is released under MIT license.
4 * See file LICENSE.txt or go to
5 * https://github.com/JBenda/inkcpp for full license details.
6 */
7#pragma once
8
9#include "system.h"
10
11namespace ink {
12constexpr uint32_t InkBinVersion = 1;
13constexpr uint32_t InkVersion = 21;
14};
Namespace contaning all modules and classes from InkCPP.
Definition choice.h:11
unsigned int uint32_t
define basic numeric type
Definition system.h:47
constexpr uint32_t InkVersion
Supported version of ink.json files.
Definition version.h:13
constexpr uint32_t InkBinVersion
Supportet version of ink.bin files.
Definition version.h:12