mirror of
https://github.com/Ragora/T2-CPP.git
synced 2026-01-24 20:44:46 +00:00
25 lines
443 B
C
25 lines
443 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <DXAPI/Move.h>
|
||
|
|
#include <DXAPI/GameConnection.h>
|
||
|
|
|
||
|
|
namespace DX
|
||
|
|
{
|
||
|
|
class AIConnection : public GameConnection
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
AIConnection(unsigned int obj);
|
||
|
|
|
||
|
|
//! Whether or not this bot should use custom moves.
|
||
|
|
bool mUseCustomMoves;
|
||
|
|
|
||
|
|
//! The custom move for this bot.
|
||
|
|
Move mCustomMove;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief Computes the current move for this bot.
|
||
|
|
*/
|
||
|
|
void generateMove(void);
|
||
|
|
};
|
||
|
|
} // End NameSpace DX
|