haraldhv
/
aigo
Archived
1
0
Fork 0
This repository has been archived on 2024-07-04. You can view files and clone it, but cannot push or open issues or pull requests.
aigo/lib/state.h

31 lines
403 B
C
Raw Normal View History

2007-02-23 18:10:32 +01:00
#ifndef _STATE_H_
#define _STATE_H_
#include "settings.h"
#include <SDL/SDL.h>
/**
* Describes the current state of a go board.
*/
class State
{
public:
/**
* Standard constructor
*/
State( void );
void setSize(int size) { State::size = size; }
static State generateState( SDL_Surface *board, Settings settings);
private:
static int size;
};
#endif /* ifndef _STATE_H_ */