Example #1
0
 /// <summary>
 /// Sets the current post-blueprint for this state.
 /// </summary>
 /// <param name="bp">The blueprint to set.</param>
 /// <returns></returns>
 public bool AddPostBlueprint(Blueprint bp)
 {
     _postBlueprints.Push(bp);
     return true;
 }
Example #2
0
 /// <summary>
 /// Sets the current pre-blueprint for this state.
 /// </summary>
 /// <param name="bp">The blueprint to set.</param>
 /// <returns></returns>
 public bool AddPreBlueprint(Blueprint bp)
 {
     _preBlueprints.Push(bp);
     return true;
 }