Files
pokerth/console/src/ICallback.cs
T

16 lines
294 B
C#
Raw Normal View History

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);
}
}