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

17 lines
205 B
Ruby

class IMICFPS
module Networking
class Connection
def initialize(hostname:, port:)
end
def connect
end
def update
end
def close
end
end
end
end