Files
i-mic-fps/lib/scripting.rb

12 lines
193 B
Ruby

class IMICFPS
module Scripting
def on
# self is a Scripting::SandBox
Subscription.new(self.entity)
end
def component(name)
Component.get(name)
end
end
end