Net.Like.Xue.Tokyo/Assets/Plugins/Polaris - Low Poly Ecosystem/Jupiter - Procedural Sky/Runtime/Scripts/Utilities/JDisplayNameAttribute.cs

19 lines
387 B
C#
Raw Normal View History

2024-11-20 11:36:36 +08:00
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using System;
namespace Pinwheel.Jupiter
{
[AttributeUsage(AttributeTargets.All, AllowMultiple = false)]
public class JDisplayName : Attribute
{
public string DisplayName { get; set; }
public JDisplayName(string name)
{
DisplayName = name;
}
}
}