blob: 009028f01406728e37e42e80e9484a9a53488042 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef COMP_H
#define COMP_H
#include "match.h"
extern double horizontal_stdev, vertical_stdev;
void comp_set_difficulty(int diff);
void comp_visit(struct leg *l);
#endif
|