//Initialization
 void Awake()
 {
     Singleton = this;
 }
 //Destructor
 void OnDestroy()
 {
     Singleton = null;
 }