From 219b28789936e413522a4b3c635420dff9bf4b07 Mon Sep 17 00:00:00 2001 From: gerstrong Date: Mon, 27 Jul 2009 03:40:59 +0000 Subject: [PATCH] added missing file baby.h git-svn-id: https://clonekeenplus.svn.sourceforge.net/svnroot/clonekeenplus/cgenius/trunk@187 4df4b0f3-56ce-47cb-b001-ed939b7d65a6 --- src/ai/baby.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/ai/baby.h diff --git a/src/ai/baby.h b/src/ai/baby.h new file mode 100644 index 000000000..a5f15f678 --- /dev/null +++ b/src/ai/baby.h @@ -0,0 +1,21 @@ +/* + * baby.h + * + * Created on: 26.07.2009 + * Author: gerstrong + */ + +#ifndef BABY_H_ +#define BABY_H_ + +/* located in game.cpp */ +void freezeplayer(int theplayer); + +/* located in misc.cpp */ +unsigned int rnd(void); + +/* located in ai/baby.cpp */ +void baby_ai(int o, int episode, bool hard); +void baby_jump(int o, int big); + +#endif /* BABY_H_ */