Laxley Grandfather Clock puzzle artwork done.
This commit is contained in:
@@ -1,12 +1,15 @@
|
||||
using System;
|
||||
|
||||
[AttributeUsage(AttributeTargets.Field)]
|
||||
public abstract class DisplayNameAttribute : Attribute
|
||||
namespace BriarQueen.Data.Attributes
|
||||
{
|
||||
public string Name { get; }
|
||||
|
||||
public DisplayNameAttribute(string name)
|
||||
[AttributeUsage(AttributeTargets.Field)]
|
||||
public class DisplayNameAttribute : Attribute
|
||||
{
|
||||
Name = name;
|
||||
public string Name { get; }
|
||||
|
||||
public DisplayNameAttribute(string name)
|
||||
{
|
||||
Name = name;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user