mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-13 06:42:35 +00:00
14 lines
183 B
Ruby
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
|