Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Hi! There is code in your Viking Move method which is wrong for strategy pattern usage. The idea of strategy is to avoid if-else constructions. Otherwise is new MoveBehavior class is added you will need to change the Move method. The implementation for Viking Move should be just the next:
public void Move()
{
MoveBehavior.Move(this);
}
Good luck!