To create a window, I use Window_Base as a superclass. But there are something I don't understand. Please help me about:
Help me please, thank you! ^^
1. Window_Base is a subclass of Window. But I can't see where class Window is?class Window_Base < Window
2. What is self.* in method initialize? What is self.z?def initialize(x, y, width, height)
super()
@windowskin_name = $game_system.windowskin_name
self.windowskin = RPG::Cache.windowskin(@windowskin_name)
self.x = x
self.y = y
self.width = width
self.height = height
self.z = 100
end
Help me please, thank you! ^^