mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 16:43:00 +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;
|
|
}
|
|
}
|
|
}
|
|
|