h2-mod/deps/gsc-tool/include/xsk/gsc/common/asset.hpp

27 lines
513 B
C++
Raw Normal View History

2024-03-07 03:33:59 -05:00
// Copyright 2024 xensik. All rights reserved.
//
// Use of this source code is governed by a GNU GPLv3 license
// that can be found in the LICENSE file.
#pragma once
namespace xsk::gsc
{
struct asset
{
using ptr = std::unique_ptr<asset>;
std::string name;
u32 compressedLen;
u32 len;
u32 bytecodeLen;
std::vector<u8> buffer;
std::vector<u8> bytecode;
auto serialize() -> std::vector<u8>;
auto deserialize(std::vector<u8> const& data) -> void;
};
} // namespace xsk::gsc