summaryrefslogtreecommitdiff
path: root/include/SFML/Graphics/Color.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/SFML/Graphics/Color.hpp')
-rw-r--r--include/SFML/Graphics/Color.hpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/include/SFML/Graphics/Color.hpp b/include/SFML/Graphics/Color.hpp
index 43357aa..6a0cdea 100644
--- a/include/SFML/Graphics/Color.hpp
+++ b/include/SFML/Graphics/Color.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.
@@ -80,23 +80,23 @@ public:
////////////////////////////////////////////////////////////
// Static member data
////////////////////////////////////////////////////////////
- static const Color Black; ///< Black predefined color
- static const Color White; ///< White predefined color
- static const Color Red; ///< Red predefined color
- static const Color Green; ///< Green predefined color
- static const Color Blue; ///< Blue predefined color
- static const Color Yellow; ///< Yellow predefined color
- static const Color Magenta; ///< Magenta predefined color
- static const Color Cyan; ///< Cyan predefined color
- static const Color Transparent; ///< Transparent (black) predefined color
+ static const Color Black; //!< Black predefined color
+ static const Color White; //!< White predefined color
+ static const Color Red; //!< Red predefined color
+ static const Color Green; //!< Green predefined color
+ static const Color Blue; //!< Blue predefined color
+ static const Color Yellow; //!< Yellow predefined color
+ static const Color Magenta; //!< Magenta predefined color
+ static const Color Cyan; //!< Cyan predefined color
+ static const Color Transparent; //!< Transparent (black) predefined color
////////////////////////////////////////////////////////////
// Member data
////////////////////////////////////////////////////////////
- Uint8 r; ///< Red component
- Uint8 g; ///< Green component
- Uint8 b; ///< Blue component
- Uint8 a; ///< Alpha (opacity) component
+ Uint8 r; //!< Red component
+ Uint8 g; //!< Green component
+ Uint8 b; //!< Blue component
+ Uint8 a; //!< Alpha (opacity) component
};
////////////////////////////////////////////////////////////