From 449b1e461cc47ff827ce079b4120c6d6fc91829b Mon Sep 17 00:00:00 2001 From: Jack <65086686+jacksherling@users.noreply.github.com> Date: Sun, 6 Oct 2024 19:02:08 -0400 Subject: [PATCH] Update tutorial.rst (#2286) --- docs/source/tutorial.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/source/tutorial.rst b/docs/source/tutorial.rst index b44e331c40e..d836f27c95e 100644 --- a/docs/source/tutorial.rst +++ b/docs/source/tutorial.rst @@ -351,6 +351,7 @@ but here are some more hints. * The motion command for driving in a straight line is :cpp:`"path_target"`. * You will probably need to override some methods relating to passing, but you can leave their implementations empty. They don't need to do anything in your position, as your robot will not pass the ball * The simulator tells you the coordinates of your cursor—these are the same coordinates you can use in your motion commands. +* You will need to add the new file name you create to ``soccer/src/soccer/CMakeLists.txt``. See how this is done for other positions. Testing ~~~~~~~ @@ -668,4 +669,4 @@ Here are all the external links from this document, copied again for your easy r * `C++ Inheritance`_ -.. _C++ Inheritance: https://www.learncpp.com/cpp-tutorial/basic-inheritance-in-c/ \ No newline at end of file +.. _C++ Inheritance: https://www.learncpp.com/cpp-tutorial/basic-inheritance-in-c/