Top Level Namespace

Defined Under Namespace

Modules: Gamewisp

Instance Method Summary collapse

Instance Method Details

#dbg(msg, other = nil) ⇒ Object



12
13
14
15
16
17
18
19
# File 'lib/gamewisp.rb', line 12

def dbg msg, other = nil
  if $DEBUG
    puts msg
    unless other.nil?
      puts other
    end
  end
end