Roblox-File-Format/Interfaces/IAttributeToken.cs
2021-06-05 17:21:12 -05:00

11 lines
238 B
C#

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