8

I'm building a simple poker website for a demo. Anyone know where I can find a set of classes encapsulating card, deck, hand etc. ?

Google is not being very helpful, (most links are to codeproject which is down until 1pm EST - I'm in Ireland).

Thanks!

Jimmy Collins
  • 3,294
  • 5
  • 39
  • 57

2 Answers2

2

Codeproject is currently down for me too, but in my implementation of Texas Hold'em I used this library for representing the hands, as well as evaluating which player has the best hand (a pretty tricky task). It worked out great for me.

wsanville
  • 37,158
  • 8
  • 76
  • 101
0

Take a look of a C# library I am working on:

https://github.com/NikolayIT/TexasHoldemGameEngine

It contains all you need: Cards, Deck, Shuffle, Hand, Players, Game Engine, Hand Evaluation and Unit Tests.

Nikolay Kostov
  • 16,433
  • 23
  • 85
  • 123