From d35993d0720d3e7d6167434f18ddeb28ff893ce1 Mon Sep 17 00:00:00 2001 From: Chris Cromer Date: Thu, 21 Jul 2022 20:54:06 -0400 Subject: [PATCH] add comment to _on_player_touched --- src/player/Player.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/player/Player.h b/src/player/Player.h index 867de6d..cde3e9f 100644 --- a/src/player/Player.h +++ b/src/player/Player.h @@ -275,6 +275,10 @@ namespace godot */ Vector2 get_velocity(); + /** + * @brief This function is called when an enemy touches the player. + * + */ void _on_player_touched(); }; }