21 lines
476 B
C#
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();
|
|
}
|
|
}
|
|
}
|