mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-17 00:22:36 +00:00
12 lines
193 B
Ruby
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 |