Files
i-mic-fps/lib/networking/events.rb

12 lines
181 B
Ruby

# frozen_string_literal: true
class IMICFPS
module Networking
module Events
def on_connect(client)
end
def on_disconnect(client)
end
end
end
end