public void clear()
 {
     instance = null;
 }
 public static ScoreManager Instance()
 {
     if (instance == null)
         instance = new ScoreManager();
     return instance;
 }