From c004ba99ffc53e8982a262b3857e8b21422973ee Mon Sep 17 00:00:00 2001 From: Sara Date: Wed, 29 May 2024 17:37:04 +0200 Subject: [PATCH] chore: doxygen documentation for spawnpoint --- spawn_point.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/spawn_point.hpp b/spawn_point.hpp index e2667c9..eeb0b2d 100644 --- a/spawn_point.hpp +++ b/spawn_point.hpp @@ -6,6 +6,10 @@ namespace gd = godot; namespace utils { +/*! A location in the game world that the player can spawn at. + * + * Registers and de-registers itself with the GameRoot3D to enable/disable this spawnpoint. + */ class SpawnPoint3D : public gd::Node3D { GDCLASS(SpawnPoint3D, gd::Node3D); static void _bind_methods();