Ejemplo n.º 1
0
    //Instantial Methods

    // Construction

    public GroundTile(int x, int y)
    {
        Debug.Log("3.3 - GroundTile() Constructor");
        xPos  = x;
        yPos  = y;
        level = GameObject.Find("Level").GetComponent <LevelGenerator>();
        level.AddGroundTile(this);
    }