aim: now looks at next node while navigating (#472)

This commit is contained in:
commandcobra7 2023-07-27 01:19:19 +03:00 committed by GitHub
commit a06418b3b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 12 additions and 4 deletions

View file

@ -154,6 +154,10 @@ public:
~PathWalk () = default;
public:
int32_t &doubleNext () {
return at (2);
}
int32_t &next () {
return at (1);
}