Roblox-File-Format/Interfaces/IAttributeToken.cs
2021-02-25 14:09:54 -06:00

11 lines
232 B
C#

namespace RobloxFiles
{
public interface IAttributeToken<T>
{
AttributeType AttributeType { get; }
T ReadAttribute(Attribute attribute);
void WriteAttribute(Attribute attribute, T value);
}
}