/* rebuild.h * Brian O'Connor * * Functions to build a new environment given the original one. * The new environment will be the old environment minus the area * that the original pursuer was able to search in that environment. */ #ifndef REBUILD_H #define REBUILD_H class PInfo; class WorldInfo; int RebuildInput(PInfo *pinfo, WorldInfo *wInfo); #endif