Luanti 5.10.0-dev
 
Loading...
Searching...
No Matches
irrlichttypes.h
Go to the documentation of this file.
1// Luanti
2// SPDX-License-Identifier: LGPL-2.1-or-later
3// Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5#pragma once
6
7/*
8 * IrrlichtMt already includes stdint.h in irrTypes.h. This works everywhere
9 * we need it to (including recent MSVC), so should be fine here too.
10 */
11#include <cstdint>
12
13#include <irrTypes.h>
14
15using namespace irr;
16
17#define S8_MIN INT8_MIN
18#define S16_MIN INT16_MIN
19#define S32_MIN INT32_MIN
20#define S64_MIN INT64_MIN
21
22#define S8_MAX INT8_MAX
23#define S16_MAX INT16_MAX
24#define S32_MAX INT32_MAX
25#define S64_MAX INT64_MAX
26
27#define U8_MAX UINT8_MAX
28#define U16_MAX UINT16_MAX
29#define U32_MAX UINT32_MAX
30#define U64_MAX UINT64_MAX
Definition clientmap.h:30