SnakeBattleNet.Core.Fighter.Fighter C# (CSharp) Метод

Fighter() публичный Метод

public Fighter ( string id, ICollection chips, Directed tail ) : System.Collections.Generic
id string
chips ICollection
tail Directed
Результат System.Collections.Generic
        public Fighter(string id, ICollection<IEnumerable<ChipCell>> chips, Directed tail)
        {
            Id = id;
            Body = new LinkedList<Directed>();
            Chips = chips;
            Tail = tail;
        }