aboutsummaryrefslogtreecommitdiff
path: root/src/shared/vmap/VMapFactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/vmap/VMapFactory.h')
-rw-r--r--src/shared/vmap/VMapFactory.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/shared/vmap/VMapFactory.h b/src/shared/vmap/VMapFactory.h
index ca529bd2715..f3375d723c1 100644
--- a/src/shared/vmap/VMapFactory.h
+++ b/src/shared/vmap/VMapFactory.h
@@ -17,23 +17,30 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+
#ifndef _VMAPFACTORY_H
#define _VMAPFACTORY_H
+
#include "IVMapManager.h"
+
/**
This is the access point to the VMapManager.
*/
+
namespace VMAP
{
//===========================================================
+
class VMapFactory
{
public:
static IVMapManager* createOrGetVMapManager();
static void clear();
+
static void preventSpellsFromBeingTestedForLoS(const char* pSpellIdString);
static bool checkSpellForLoS(unsigned int pSpellId);
};
+
}
#endif