//******************************************************************************
//
// CS 240C    : Spring 2003 Ohio University Travis Dillon
// Project 6  : Checkers
// file       : prog6.h
// started    : 05-13-03
// summary    : This header file is for all the include statements.
//
//******************************************************************************

#ifndef PROG6_H
#define PROG6_H

using namespace std;

#include "game.h"
#include "checker.h"

#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <cstdlib>
#include <iomanip>
#include <cmath>
#include <cctype>

#endif  //PROG6_H