modeco80
5d03f49e21
Don't have a tool for building "fresh" packages yet, but the "paktest" tests regurgitating a pak into a new pak file. Usage is: ./paktest [pak file] it will write to "new.pak" always, which meh. It's just a test utility.
30 lines
594 B
C++
30 lines
594 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;
|
|
} // namespace europa::structs
|
|
|
|
#endif // EUROPA_STRUCTS_IMHEXADAPTER_H
|