mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-02 16:38:41 +00:00
30 lines
678 B
C++
30 lines
678 B
C++
// Luanti
|
|
// SPDX-License-Identifier: LGPL-2.1-or-later
|
|
// Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
|
|
|
#pragma once
|
|
|
|
/*
|
|
* IrrlichtMt already includes stdint.h in irrTypes.h. This works everywhere
|
|
* we need it to (including recent MSVC), so should be fine here too.
|
|
*/
|
|
#include <cstdint>
|
|
|
|
#include <irrTypes.h>
|
|
|
|
using namespace irr;
|
|
|
|
#define S8_MIN INT8_MIN
|
|
#define S16_MIN INT16_MIN
|
|
#define S32_MIN INT32_MIN
|
|
#define S64_MIN INT64_MIN
|
|
|
|
#define S8_MAX INT8_MAX
|
|
#define S16_MAX INT16_MAX
|
|
#define S32_MAX INT32_MAX
|
|
#define S64_MAX INT64_MAX
|
|
|
|
#define U8_MAX UINT8_MAX
|
|
#define U16_MAX UINT16_MAX
|
|
#define U32_MAX UINT32_MAX
|
|
#define U64_MAX UINT64_MAX
|