mirror of
https://github.com/ppy/osu.git
synced 2025-01-26 18:03:11 +08:00
16 lines
330 B
C#
16 lines
330 B
C#
|
using System;
|
|||
|
namespace osu.Game.Configuration
|
|||
|
{
|
|||
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
|
|||
|
public class DisplayNameAttribute : Attribute
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
|
|||
|
public DisplayNameAttribute(string name)
|
|||
|
{
|
|||
|
Name = name;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|