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