Ejemplo n.º 1
0
 public static Seq GetSeq(Seq.eState key)
 {
     if (instance._data_Seq.ContainsKey(key))
     {
         return(_instance._data_Seq[key]);
     }
     return(null);
 }
Ejemplo n.º 2
0
 public Seq(List <CSV.varient> tContents)
 {
     this.state     = tContents[0].ToEnum <Seq.eState>();
     this.speak     = tContents[1];
     this.lookat    = tContents[2];
     this.cases     = tContents[3];
     this.condition = tContents[4];
     this.cond_set  = tContents[5];
     this.elseCase  = tContents[6];
     this.next      = tContents[7].ToEnum <Seq.eState>();
 }
Ejemplo n.º 3
0
 public static bool TryGetSeq(Seq.eState key, out Seq val)
 {
     return(_instance._data_Seq.TryGetValue(key, out val));
 }