// Use this for initialization void Start() { player = GetComponent <Head>(); }
public Snake(int startPosX, int startPosY) { Head = new Head(new Point(startPosX, startPosY), Direction.right); }