31 lines
593 B
C++
31 lines
593 B
C++
//
|
|
// EuropaTools
|
|
//
|
|
// (C) 2021-2022 modeco80 <lily.modeco80@protonmail.ch>
|
|
//
|
|
// SPDX-License-Identifier: GPL-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;
|
|
} // namespace europa::structs
|
|
|
|
#endif // EUROPA_STRUCTS_IMHEXADAPTER_H
|