Initial commit

This commit is contained in:
2026-06-12 22:37:02 +08:00
commit 94e46587da
77 changed files with 168188 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
//---------------------------------------------------------------------------
#ifndef BacABThreadH
#define BacABThreadH
//---------------------------------------------------------------------------
#include <vector>
#include "BaseThread.h"
#include "GameUnit.h"
using namespace std;
//---------------------------------------------------------------------------
class TAutoBetThread : public TBaseThread
{
private:
int m_iGame;
int m_iOp; //0=bet, 1=gameon
int __fastcall RealBet(TGame* pG, int chips[]);
protected:
virtual void __fastcall Execute();
public:
__fastcall TAutoBetThread(int iG);
};
#endif