Method: RGSS.load_data_file
- Defined in:
- lib/RGSS/serialize.rb
.load_data_file(file) ⇒ Object
85 86 87 88 89 |
# File 'lib/RGSS/serialize.rb', line 85 def self.load_data_file(file) File.open(file, "rb") do |f| return Marshal.load(f) end end |