mirror of
https://github.com/UltraCoderRU/screepsxx.git
synced 2026-01-28 01:55:12 +00:00
18 lines
278 B
C++
18 lines
278 B
C++
#ifndef SCREEPS_PATH_FINDER_HPP
|
|
#define SCREEPS_PATH_FINDER_HPP
|
|
|
|
#include "Object.hpp"
|
|
|
|
namespace Screeps {
|
|
|
|
class PathFinderObject : public Object
|
|
{
|
|
public:
|
|
PathFinderObject();
|
|
};
|
|
|
|
extern PathFinderObject PathFinder;
|
|
|
|
} // namespace Screeps
|
|
|
|
#endif // SCREEPS_PATH_FINDER_HPP
|