152 153 154 155 156 157 158
# File 'lib/RGSS.rb', line 152 def self.hash_to_array(hash) arr = [] hash.each do |k, v| arr[k] = v end return arr end