Liberi
An exergame built for kids with CP!
SpawnDetailAttribute.cs
1 using System;
2 
6 [AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = false)]
7 public class SpawnDetailAttribute : Attribute
8 {
12  public string DetailKey
13  {
14  get { return _detailKey; }
15  }
16 
17  string _detailKey = null;
18 
23  public SpawnDetailAttribute (string detailKey = null)
24  {
25  _detailKey = detailKey;
26  }
27 }
string DetailKey
Gets the detail key used to find the value for the target field.
Attribute to use on fields. Marks them for assignment from spawn details.
SpawnDetailAttribute(string detailKey=null)
Marks this field for assignment from spawn details.