A game about forced loneliness, made by TACStudios
at master 12 lines 458 B view raw
1using System; 2 3namespace Unity.Burst 4{ 5 /// <summary> 6 /// Can be used to specify that a parameter to a function, a field of a struct, a struct, or a function return will not alias. (Advanced - see User Manual for a description of Aliasing). 7 /// </summary> 8 [AttributeUsage(AttributeTargets.Parameter | AttributeTargets.Field | AttributeTargets.Struct | AttributeTargets.ReturnValue)] 9 public class NoAliasAttribute : Attribute 10 { 11 } 12}