www.pudn.com > SimpleMUD.rar > RoomDatabase.h


// MUD Programming 
// Ron Penton 
// (C)2003 
// RoomDatabase.h - The class that stores all of the rooms within the MUD 
//  
//  
 
#ifndef SIMPLEMUDROOMDATABASE_H 
#define SIMPLEMUDROOMDATABASE_H 
 
 
#include  
#include  
#include  
#include  
#include  
 
#include "EntityDatabase.h" 
#include "Room.h" 
#include "DatabasePointer.h" 
 
namespace SimpleMUD 
{ 
 
 
class RoomDatabase : public EntityDatabaseVector 
{ 
public: 
 
    static void LoadTemplates(); 
    static void LoadData(); 
    static void SaveData(); 
 
};  // end class RoomDatabase 
 
 
 
}   // end namespace SimpleMUD 
 
#endif