示例#1
0
 protected void AddStim(StimType arg)
 {
     if (GlobalStims.ContainsKey(arg) && !Stims.Contains(arg))
     {
         Stims.Add(arg);
     }
 }
示例#2
0
 public Stimulus(StimType _stimType, float _strength)
 {
     stimType = _stimType;
     strength = _strength;
 }