mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-16 08:02:36 +00:00
11 lines
232 B
Ruby
11 lines
232 B
Ruby
# frozen_string_literal: true
|
|
class IMICFPS
|
|
class EventHandler
|
|
class Event
|
|
attr_reader :entity, :context
|
|
def initialize(entity:, context: nil)
|
|
@entity, @context = entity, context
|
|
end
|
|
end
|
|
end
|
|
end |