#ifndef _CW_PLANETGEN_H #define _CW_PLANETGEN_H /* Generates the number of planets to have based upon landmass */ int determine_number_planets(int, int, int); /* Spot the planets unto the grid. Make sure they are a certain distance apart. */ void place_planets_on_map(int, int, char* , int ); /* Detemine their size and terrain */ void generate_planets(int, int, char *); #endif