Class: RGSS::Game_Variables
- Inherits:
-
Object
- Object
- RGSS::Game_Variables
show all
- Includes:
- BasicCoder
- Defined in:
- lib/RGSS.rb
Constant Summary
Constants included
from BasicCoder
BasicCoder::INCLUDED_CLASSES
Instance Method Summary
collapse
Methods included from BasicCoder
#encode_with, included, #init_with, #ivars, set_ivars_methods
Instance Method Details
#decode(name, value) ⇒ Object
300
301
302
|
# File 'lib/RGSS.rb', line 300
def decode(name, value)
return hash_to_array(value)
end
|
#encode(name, value) ⇒ Object
296
297
298
|
# File 'lib/RGSS.rb', line 296
def encode(name, value)
return array_to_hash(value)
end
|