blob: da1306566d74d99a520e7050e603b48a19d79e43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
#
module EvenDoors
#
class Space < Room
#
def initialize n, args={}
super n, nil
EvenDoors::Twirl.debug_errors = args[:debug_errors] || false
EvenDoors::Twirl.debug_routing = args[:debug_routing] || false
end
#
def twirl!
@spots.values.each do |spot| spot.start! end
EvenDoors::Twirl.run = true
EvenDoors::Twirl.twirl!
@spots.values.each do |spot| spot.stop! end
end
#
end
#
end
#
# EOF
|