mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-11 20:15:07 -05:00
19 lines
255 B
C
19 lines
255 B
C
|
#pragma once
|
||
|
|
||
|
#include "Resource.h"
|
||
|
|
||
|
namespace Ship
|
||
|
{
|
||
|
class BlobV0 : public ResourceFile
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
void ParseFileBinary(BinaryReader* reader, Resource* res) override;
|
||
|
};
|
||
|
|
||
|
class Blob : public Resource
|
||
|
{
|
||
|
public:
|
||
|
std::vector<uint8_t> data;
|
||
|
};
|
||
|
};
|