// Start is called before the first frame update
 void Start()
 {
     game = GameObject.Find("GameControl").GetComponent <GameControl>();
     spin = GameObject.Find("Spin").GetComponent <SpiningManager>();
     dice = GameObject.Find("Dice").GetComponent <Dice>();
     deck = GameObject.Find("DeckCards").GetComponent <DeckCards>();
 }