class Object

Public Instance Methods

dbg(msg, other = nil) click to toggle source
# File lib/gamewisp.rb, line 12
def dbg msg, other = nil
  if $DEBUG
    puts msg
    unless other.nil?
      puts other
    end
  end
end