mirror of
https://github.com/kirirururu/screepsxx.git
synced 2026-06-14 17:30:42 +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
|