Console client: Separate lib stuff from console client, in order to use it for tests.

This commit is contained in:
lotodore
2008-12-23 17:24:31 +00:00
parent 04616ef89c
commit 457ce36a98
39 changed files with 2165 additions and 28 deletions
+15
View File
@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace pokerth_lib
{
public interface ICallback
{
void InitDone();
void JoinedGame(string name);
void GameStarted(List<string> players);
void HandStarted(Hand h);
void Error(string message);
}
}