EuropaTools/include/europa/structs/ImHexAdapter.h

31 lines
594 B
C
Raw Normal View History

2022-09-04 17:11:14 -04:00
//
// 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;
2022-09-04 17:11:14 -04:00
using u16 = std::uint16_t;
using s16 = std::int16_t;
2022-09-04 17:11:14 -04:00
using u32 = std::uint32_t;
using s32 = std::int32_t;
2022-09-04 17:11:14 -04:00
using u64 = std::uint64_t;
using s64 = std::int64_t;
} // namespace europa::structs
2022-09-04 17:11:14 -04:00
#endif // EUROPA_STRUCTS_IMHEXADAPTER_H