root/trunk/src/bindings/scripts/include/precompiled.h @ 13

Revision 13, 0.6 kB (checked in by yumileroy, 17 years ago)

[svn] * Moved Script grid_searchers to core
* Moved an enum from sc_creature.h to CreatureAI.h

Original author: Neo2003
Date: 2008-10-05 11:56:30-05:00

Line 
1/* Copyright (C) 2006 - 2008 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/>
2* This program is free software licensed under GPL version 2
3* Please see the included DOCS/LICENSE.TXT for more information */
4
5#ifndef SC_PRECOMPILED_H
6#define SC_PRECOMPILED_H
7
8#include "../ScriptMgr.h"
9#include "Cell.h"
10#include "CellImpl.h"
11#include "GridNotifiers.h"
12#include "GridNotifiersImpl.h"
13#include "Unit.h"
14#include "GameObject.h"
15#include "sc_creature.h"
16#include "sc_gossip.h"
17#include "sc_instance.h"
18
19#ifdef WIN32
20#include <windows.h>
21BOOL APIENTRY DllMain( HANDLE hModule,
22DWORD  ul_reason_for_call,
23LPVOID lpReserved
24)
25{
26    return true;
27}
28#endif
29
30#endif
Note: See TracBrowser for help on using the browser.