Kingdom Ablaze
Sponsor
say you had:
[rgss]class someclass < anotherclass
attr_reader :data
def initialize(data)
super()
@data = data
end
end
[/rgss]
what would be the proper way to change the value of data?
[rgss]class someclass < anotherclass
attr_reader :data
def initialize(data)
super()
@data = data
end
end
[/rgss]
what would be the proper way to change the value of data?