Files
i-mic-fps/lib/event.rb
2020-12-02 17:37:48 -06:00

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