A game about forced loneliness, made by TACStudios
1using System;
2
3namespace Unity.VisualScripting
4{
5 [AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = true)]
6 public sealed class RenamedFromAttribute : Attribute
7 {
8 public RenamedFromAttribute(string previousName)
9 {
10 this.previousName = previousName;
11 }
12
13 public string previousName { get; }
14 }
15}