コード例 #1
0
ファイル: Session.cs プロジェクト: Shiroy/Agar.net
 public Session(World world)
 {
     _open = false;
     _ws = null;
     _world = world;
     _dataQueue = new Queue<byte[]>();
     _dataMutex = new Mutex();
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: Shiroy/Agar.net
 static void Main(string[] args)
 {
     World world = new World();
     world.Init();
     world.Run();
 }