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_ */