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

14 lines
183 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