A game about forced loneliness, made by TACStudios
1using System; 2 3namespace Unity.VisualScripting 4{ 5 // Allows us to migrate old serialized namespaces to new ones 6 // Ex usage: [assembly: RenamedAssembly("Bolt.Core", "Unity.VisualScripting.Core")] 7 [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)] 8 public sealed class RenamedAssemblyAttribute : Attribute 9 { 10 public RenamedAssemblyAttribute(string previousName, string newName) 11 { 12 this.previousName = previousName; 13 this.newName = newName; 14 } 15 16 public string previousName { get; } 17 18 public string newName { get; } 19 } 20}