2008-12-23 14:24:37 +00:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace pokerth_console
|
|
|
|
|
{
|
|
|
|
|
interface ICallback
|
|
|
|
|
{
|
|
|
|
|
void InitDone();
|
|
|
|
|
void JoinedGame(string name);
|
|
|
|
|
void GameStarted(List<string> players);
|
|
|
|
|
void HandStarted(Hand h);
|
|
|
|
|
void Error(string message);
|
|
|
|
|
}
|
|
|
|
|
}
|