Inheritance: MonoBehaviour
    public ScoreoidInterface ScoreKeeper()
    {
        if (null == scoreoidInterface)
        {
            scoreoidInterface = GameObject.Find("ScoreKeeper").GetComponent <ScoreoidInterface>();
        }

        return(scoreoidInterface);
    }
    public ScoreoidInterface ScoreKeeper()
    {
        if(null == scoreoidInterface)
            scoreoidInterface = GameObject.Find("ScoreKeeper").GetComponent<ScoreoidInterface>();

        return scoreoidInterface;
    }