- Re-implemented walkway drawing in the same way - Tried to fix an STL error - A few other thing, maybe? git-svn-id: http://openexile.googlecode.com/svn/trunk@60 4ebdad44-0ea0-11de-aab3-ff745001d230
27 lines
503 B
C
27 lines
503 B
C
/*
|
|
* classes.h
|
|
* BoE
|
|
*
|
|
* Created by Celtic Minstrel on 24/04/09.
|
|
*
|
|
* This file simply includes all the classes in an order that satisfies all dependencies.
|
|
*
|
|
*/
|
|
|
|
#include "location.h"
|
|
#include "terrain.h"
|
|
#include "vehicle.h"
|
|
#include "monster.h"
|
|
#include "special.h"
|
|
#include "talking.h"
|
|
#include "item.h"
|
|
#include "town.h"
|
|
#include "regtown.h"
|
|
#include "tmpltown.h"
|
|
#include "outdoors.h"
|
|
#include "scenario.h"
|
|
#include "pc.h"
|
|
#include "creatlist.h"
|
|
#include "party.h"
|
|
#include "universe.h"
|