mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 23:00:42 +00:00
17 lines
243 B
C++
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);
|
|
};
|
|
}
|