mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-15 15:42:35 +00:00
10 lines
202 B
Ruby
10 lines
202 B
Ruby
class IMICFPS
|
|
class EventHandler
|
|
class Event
|
|
attr_reader :entity, :context
|
|
def initialize(entity:, context: nil)
|
|
@entity, @context = entity, context
|
|
end
|
|
end
|
|
end
|
|
end |