SnakeBattleNet.Core.Fighter.Fighter C# (CSharp) Method

Fighter() public method

public Fighter ( string id, ICollection chips, Directed tail ) : System.Collections.Generic
id string
chips ICollection
tail Directed
return System.Collections.Generic
        public Fighter(string id, ICollection<IEnumerable<ChipCell>> chips, Directed tail)
        {
            Id = id;
            Body = new LinkedList<Directed>();
            Chips = chips;
            Tail = tail;
        }