Roblox-File-Format/Interfaces/IAttributeToken.cs

11 lines
238 B
C#
Raw Permalink Normal View History

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