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