mirror of
https://github.com/glest/glest-source.git
synced 2025-08-16 21:33:59 +02:00
- attempt to add more randomness to pathfinding and faster AI decsions
This commit is contained in:
@@ -86,6 +86,16 @@ public:
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
std::string getString() const {
|
||||
std::ostringstream streamOut;
|
||||
streamOut << "#1: " << this->p[0].getString();
|
||||
streamOut << "#2: " << this->p[1].getString();
|
||||
std::string result = streamOut.str();
|
||||
streamOut.str(std::string());
|
||||
return result;
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
typedef Rect2<int> Rect2i;
|
||||
|
Reference in New Issue
Block a user