private void Awake()
 {
     if (singleton == null)
     {
         singleton = this;
     }
 }
 private void Start()
 {
     invSys     = InventorySystem.singleton;
     referencer = PlayerReferencer.singleton;
     intSys     = InteractionSystem.singleton;
 }