using System; using System.Collections.Generic; namespace Encompass { [System.AttributeUsage(System.AttributeTargets.Class)] public class Mutates : System.Attribute { public readonly List mutateComponentTypes; public Mutates(params Type[] mutateComponentTypes) { this.mutateComponentTypes = new List(mutateComponentTypes); } } }