Revision 2, 0.5 kB
(checked in by yumileroy, 17 years ago)
|
[svn] * Proper SVN structure
Original author: Neo2003
Date: 2008-10-02 16:23:55-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 "sc_creature.h" |
---|
10 | #include "sc_gossip.h" |
---|
11 | #include "sc_grid_searchers.h" |
---|
12 | #include "sc_instance.h" |
---|
13 | |
---|
14 | #ifdef WIN32 |
---|
15 | #include <windows.h> |
---|
16 | BOOL APIENTRY DllMain( HANDLE hModule, |
---|
17 | DWORD ul_reason_for_call, |
---|
18 | LPVOID lpReserved |
---|
19 | ) |
---|
20 | { |
---|
21 | return true; |
---|
22 | } |
---|
23 | #endif |
---|
24 | |
---|
25 | #endif |
---|