Heroes_of_Hiis/Assets/Polaris - Low Poly Ecosystem/Poseidon - Low Poly Water S.../Runtime/Scripts/Utilities/PDisplayNameAttribute.cs

19 lines
388 B
C#

using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using System;
namespace Pinwheel.Poseidon
{
[AttributeUsage(AttributeTargets.All, AllowMultiple = false)]
public class PDisplayName : Attribute
{
public string DisplayName { get; set; }
public PDisplayName(string name)
{
DisplayName = name;
}
}
}