Shipwright/libultraship/libultraship/Factories/BlobFactory.h

11 lines
172 B
C++

#include "../Blob.h"
#include "Utils/BinaryReader.h"
namespace Ship
{
class BlobFactory
{
public:
static Blob* ReadBlob(BinaryReader* reader);
};
}