screepsxx/include/Screeps/PathFinder.hpp
2021-05-30 01:14:25 +03:00

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