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/settings.h

31 lines
340 B
C
Raw Normal View History

2007-02-23 18:10:32 +01:00
#ifndef _SETTINGS_H_
#define _SETTINGS_H_
struct point
{
int x, y;
};
enum type
{
BLACK = 0, WHITE, BOARD ,
NUMVALS
};
class Settings
{
public:
Settings( void );
private:
//upper left, upper right etc...
point ul, ur, bl, br;
//threshold for white and black
int colorThreshold[2];
};
#endif /* ifndef _SETTINGS_H_ */