31 lines
573 B
C
31 lines
573 B
C
|
//
|
||
|
// EuropaTools
|
||
|
//
|
||
|
// (C) 2021-2022 modeco80 <lily.modeco80@protonmail.ch>
|
||
|
//
|
||
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
||
|
//
|
||
|
|
||
|
// laziness.. should probably remove this file
|
||
|
|
||
|
#ifndef EUROPA_STRUCTS_IMHEXADAPTER_H
|
||
|
#define EUROPA_STRUCTS_IMHEXADAPTER_H
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace europa::structs {
|
||
|
using u8 = std::uint8_t;
|
||
|
using s8 = std::int8_t;
|
||
|
|
||
|
using u16 = std::uint16_t;
|
||
|
using s16 = std::int16_t;
|
||
|
|
||
|
using u32 = std::uint32_t;
|
||
|
using s32 = std::int32_t;
|
||
|
|
||
|
using u64 = std::uint64_t;
|
||
|
using s64 = std::int64_t;
|
||
|
}
|
||
|
|
||
|
#endif // EUROPA_STRUCTS_IMHEXADAPTER_H
|