summaryrefslogtreecommitdiff
path: root/include/SFML/System/Vector3.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/SFML/System/Vector3.hpp')
-rw-r--r--include/SFML/System/Vector3.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/SFML/System/Vector3.hpp b/include/SFML/System/Vector3.hpp
index b12b2f5..47d761c 100644
--- a/include/SFML/System/Vector3.hpp
+++ b/include/SFML/System/Vector3.hpp
@@ -1,7 +1,7 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
-// Copyright (C) 2007-2018 Laurent Gomila (laurent@sfml-dev.org)
+// Copyright (C) 2007-2023 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
@@ -73,9 +73,9 @@ public:
////////////////////////////////////////////////////////////
// Member data
////////////////////////////////////////////////////////////
- T x; ///< X coordinate of the vector
- T y; ///< Y coordinate of the vector
- T z; ///< Z coordinate of the vector
+ T x; //!< X coordinate of the vector
+ T y; //!< Y coordinate of the vector
+ T z; //!< Z coordinate of the vector
};
////////////////////////////////////////////////////////////