public void GetCustomerStridesBothDirections(CustomerDirection direction)
 {
     var strides = imageContainer.GetCustomerStride(direction);
 }
Example #2
0
 /// <summary>
 /// Recovers the correct walking animation for the instance and renders it.
 /// </summary>
 public void RenderCustomer()
 {
     Image = imageContainer.GetCustomerStride(direction);
     RenderEntity();
 }