From 5d51d9f960b3608df15ff3a9fab7ea0161867434 Mon Sep 17 00:00:00 2001 From: noffie Date: Fri, 10 Jan 2025 02:22:18 +0100 Subject: [PATCH] Removing unnecessary explanatory comment --- include/Color.hpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/Color.hpp b/include/Color.hpp index 1f7405a7..3b97c205 100644 --- a/include/Color.hpp +++ b/include/Color.hpp @@ -213,11 +213,6 @@ class Color : public ::Color { */ [[nodiscard]] Color AlphaBlend(::Color dst, ::Color tint) const { return ::ColorAlphaBlend(dst, *this, tint); } - /** - * The default color preprocessors wrapped as constexpr - * Use: - * raylib::Color::RayWhite - */ static constexpr Color LightGray = LIGHTGRAY; static constexpr Color Gray = GRAY; static constexpr Color DarkGray = DARKGRAY;