mirror of
https://github.com/XWine1/XDLCompiler.git
synced 2026-07-24 12:32:21 -07:00
9 lines
276 B
C#
9 lines
276 B
C#
namespace XDLCompiler;
|
|
|
|
public sealed class NoUuidAttribute : IAttributeFactory<NoUuidAttribute>
|
|
{
|
|
static string IAttributeFactory<NoUuidAttribute>.Name => "no_uuid";
|
|
|
|
static NoUuidAttribute IAttributeFactory<NoUuidAttribute>.Create(AttributeNode node) => new();
|
|
}
|