summaryrefslogtreecommitdiff
path: root/include/SFML/Window/Sensor.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/SFML/Window/Sensor.hpp')
-rw-r--r--include/SFML/Window/Sensor.hpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/SFML/Window/Sensor.hpp b/include/SFML/Window/Sensor.hpp
index 6915fa0..488f8e7 100644
--- a/include/SFML/Window/Sensor.hpp
+++ b/include/SFML/Window/Sensor.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.
@@ -49,14 +49,14 @@ public:
////////////////////////////////////////////////////////////
enum Type
{
- Accelerometer, ///< Measures the raw acceleration (m/s^2)
- Gyroscope, ///< Measures the raw rotation rates (degrees/s)
- Magnetometer, ///< Measures the ambient magnetic field (micro-teslas)
- Gravity, ///< Measures the direction and intensity of gravity, independent of device acceleration (m/s^2)
- UserAcceleration, ///< Measures the direction and intensity of device acceleration, independent of the gravity (m/s^2)
- Orientation, ///< Measures the absolute 3D orientation (degrees)
+ Accelerometer, //!< Measures the raw acceleration (m/s^2)
+ Gyroscope, //!< Measures the raw rotation rates (degrees/s)
+ Magnetometer, //!< Measures the ambient magnetic field (micro-teslas)
+ Gravity, //!< Measures the direction and intensity of gravity, independent of device acceleration (m/s^2)
+ UserAcceleration, //!< Measures the direction and intensity of device acceleration, independent of the gravity (m/s^2)
+ Orientation, //!< Measures the absolute 3D orientation (degrees)
- Count ///< Keep last -- the total number of sensor types
+ Count //!< Keep last -- the total number of sensor types
};
////////////////////////////////////////////////////////////