mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 22:37:03 +00:00
* New table added for non-instanced maps (except BG/arena):
- `mangos`.`world_template` (script mapping to non instanced data)
- `characters`.`world` (saved script data string storage)
* InstancedData created for any map types including BGs/arenas, that allow have scripts
state for any maps, but BG/arena instance data not saved.
Note: Possible structures will renamed later for clarify apply to any type maps,
but avoid for now for simplify changes and hard affect to script library sources.
36 lines
1.2 KiB
C
36 lines
1.2 KiB
C
/*
|
|
* Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#ifndef MANGOS_SQLSTORAGES_H
|
|
#define MANGOS_SQLSTORAGES_H
|
|
|
|
#include "Common.h"
|
|
#include "Database/SQLStorage.h"
|
|
|
|
extern SQLStorage sCreatureStorage;
|
|
extern SQLStorage sCreatureDataAddonStorage;
|
|
extern SQLStorage sCreatureInfoAddonStorage;
|
|
extern SQLStorage sCreatureModelStorage;
|
|
extern SQLStorage sEquipmentStorage;
|
|
extern SQLStorage sGOStorage;
|
|
extern SQLStorage sPageTextStore;
|
|
extern SQLStorage sItemStorage;
|
|
extern SQLStorage sInstanceTemplate;
|
|
extern SQLStorage sWorldTemplate;
|
|
|
|
#endif
|