mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-15 00:08:07 -04:00
31 lines
768 B
C++
Executable File
31 lines
768 B
C++
Executable File
// ======================================================================
|
|
//
|
|
// LineOfSightCache.h
|
|
//
|
|
// Copyright 2004 Sony Online Entertainment
|
|
//
|
|
// ======================================================================
|
|
|
|
#ifndef INCLUDED_LineOfSightCache_H
|
|
#define INCLUDED_LineOfSightCache_H
|
|
|
|
// ======================================================================
|
|
|
|
class Location;
|
|
class Object;
|
|
|
|
// ======================================================================
|
|
|
|
class LineOfSightCache
|
|
{
|
|
public:
|
|
static void update();
|
|
static bool checkLOS(Object const &a, Object const &b);
|
|
static bool checkLOS(Object const &a, Location const &b);
|
|
};
|
|
|
|
// ======================================================================
|
|
|
|
#endif // INCLUDED_LineOfSightCache_H
|
|
|