Files
Aerofoil/PortabilityLayer/GPArchive.h

17 lines
243 B
C++

#pragma once
namespace PortabilityLayer
{
class ResTypeID;
struct GpArcResourceTypeTag
{
char m_id[13];
static GpArcResourceTypeTag Encode(const ResTypeID &tag);
bool Load(const char *str);
bool Decode(ResTypeID &outTag);
};
}