Skip to content

renntekstudios/Renntek-Networking

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RennTek-Networking

RennTek Networking

The RennTek Network is a cross platform network API meant to be an easy-to-use solution for all developers.

Currently supported client languages:

  • C#

How to use RennTek Networking

The server...

All RennTek Networking servers are hosted by RennTek themselves, if you want to host one yourself contact us and provide a thorough description as to why we can trust you, along with any relevant proof or projects

The client...

C#

The client namespace is entirely within RTNet, which means you'll have to be using RTNet; before accessing any of the client functions

In the simplest form, a client could be made of

using RTNet;
using System;

static void Main(string[] args)
{
   RTClient client = new RTClient("127.0.0.1", 4434); // Connect to 127.0.0.1:4434
   while(client.isConnected)
   {
     string line = Console.ReadLine();
     if(line.ToLower() == "quit")
       break;
   }
   client.Dispose(); //Get rid of any resources the client is using
}

Images

View post on imgur.com
<script async src="//s.imgur.com/min/embed.js" charset="utf-8"></script>

####RennTek Studios™ (2014-2016)

About

RenntekStudios Project, Networking

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published