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