Files
morpionReseau/go01/socketPlateauCLI.cs
2018-12-17 15:13:05 +01:00

21 lines
476 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Sockets;
using System.Text;
using System.Threading.Tasks;
namespace go01
{
class socketPlateauCLI : socketPlateauBase
{
public socketPlateauCLI(ConfigGo_S cfgGo, Goban g) : base(TypeSocket_E.Client, cfgGo, g)
{
}
protected override void InitialiserReception(Socket sArg)
{
throw new NotImplementedException();
}
}
}