@window_variable = Window_Base.new(0, 50, 250, 150)
@window_variable.x = x
@window_variable.y = y
@window_variable.width = width
@window_variable.height = height
class Testing_Class
def method_test
print 'method_test'
end
end
class Testing_Class
def method_test
print 'method_test_override'
end
end
test = Testing_Class.new
test.method_test