blob: f345afc835c1998284c65aa7fecf73d8183d7894 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef KS_AI_H
#define KS_AI_H
#include "common/ai.h"
class KSAI : public AI
{
TQ_OBJECT
public:
KSAI();
private:
static const Data DATA[];
};
#endif
|