module Gemwarrior::GameOptions
Public Class Methods
add(key, value)
click to toggle source
# File lib/gemwarrior/game_options.rb, line 6 def self.add key, value @@data ||= {} @@data[key] = value end
data()
click to toggle source
# File lib/gemwarrior/game_options.rb, line 11 def self.data @@data ||= {} end