예제 #1
0
        public void CloseShop()
        {
            _openingShop?.StopInteract();
            _openingShop = null;
            Close();

            ResetWindow();
            TEntity.Player.References.EntityBody.StopEquipPreview();
        }
예제 #2
0
        public void OpenShop(ClothesShop openingShop)
        {
            _openingShop = openingShop;
            Open();

            ResetWindow();
            InitializeWindow();

            TEntity.Player.References.EntityBody.StartEquipPreview();
        }