some changes

This commit is contained in:
onurcan488
2026-02-16 21:02:48 +03:00
parent a32a6afb08
commit 5ce1479707
10 changed files with 57 additions and 5 deletions

View File

@@ -173,6 +173,7 @@ class Interface(object):
wndInventory.BindInterfaceClass(self)
if app.ENABLE_DRAGON_SOUL_SYSTEM:
wndDragonSoul = uiDragonSoul.DragonSoulWindow()
wndDragonSoul.BindInterfaceClass(self)
wndDragonSoulRefine = uiDragonSoul.DragonSoulRefineWindow()
else:
wndDragonSoul = None
@@ -1697,6 +1698,10 @@ class Interface(object):
def EmptyFunction(self):
pass
def UseDSSButtonEffect(self, enable):
if self.wndInventory:
self.wndInventory.UseDSSButtonEffect(enable)
if __name__ == "__main__":
import app