Sha256: 50185b9df04f49be642af0ca96015ba40c0aa00f839b6735803cfde7a50ec4d1

Contents?: true

Size: 394 Bytes

Versions: 2

Compression:

Stored size: 394 Bytes

Contents

World.new("My First Text Adventure") do
  

  location "hallway" do
    description "A dark and quiet hallway"
    north       "kitchen"
  end

  location "kitchen" do
    description "An abandoned kitchen"
    north       "hall"
    south       "hallway"
  end

  location "hall" do
    description "A banquet hall...strangely deserted"
    south       "kitchen"
  end

  start "hallway"

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rubinstein-0.0.2 example.rb
rubinstein-0.0.1 example.rb