Roblox-File-Format/Interfaces/IAttributeToken.cs

11 lines
232 B
C#
Raw Normal View History

2021-02-25 20:09:54 +00:00
namespace RobloxFiles
{
public interface IAttributeToken<T>
{
AttributeType AttributeType { get; }
T ReadAttribute(Attribute attribute);
void WriteAttribute(Attribute attribute, T value);
}
}