Charlie Fleed
Member
I have a window class that inherits from Window_Selectable. Let it be Window_Mine.
So Window_Mine < Window_Selectable < Window_Base.
I wanted to know if there is a way to call the update method of the class Window_Base from inside the update method of Window_Mine without using "super", since I don't want the Window_Selectable update code to be executed and i want to jump to Window_Base. I was thinking to something like Window_Class::update...Â
So Window_Mine < Window_Selectable < Window_Base.
I wanted to know if there is a way to call the update method of the class Window_Base from inside the update method of Window_Mine without using "super", since I don't want the Window_Selectable update code to be executed and i want to jump to Window_Base. I was thinking to something like Window_Class::update...Â