mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-15 15:42:35 +00:00
18 lines
213 B
Ruby
18 lines
213 B
Ruby
class IMICFPS
|
|
module Networking
|
|
class Client
|
|
def initialize(socket:)
|
|
@socket = socket
|
|
end
|
|
|
|
def read
|
|
end
|
|
|
|
def write
|
|
end
|
|
|
|
def close
|
|
end
|
|
end
|
|
end
|
|
end |