// adv_setup.c
// FINISH CONSTRUCTING INTERNAL DATA FORMAT
#ifndef ADV_SETUP_H
#define ADV_SETUP_H

#include <stdio.h>
#include <stdlib.h>

#include "adventur.h"
#include "adv_common.h"

#include "adv_func.h"
#include "adv_io.h"
#include "adv_magic.h"
#include "adv_struc.h"  
#include "adv_util.h"

// function prototypes
void finish_setup(void);

#endif
 
