From 67027c7021fa18807a66657795e23df7e411a7be Mon Sep 17 00:00:00 2001 From: CommanderRedYT Date: Wed, 8 Dec 2021 23:40:30 +0100 Subject: [PATCH] Added icon name --- src/icon.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/icon.h b/src/icon.h index 92dde15..7d84b34 100644 --- a/src/icon.h +++ b/src/icon.h @@ -2,6 +2,8 @@ // system includes #include +#include +#include namespace espgui { template @@ -11,5 +13,7 @@ struct Icon static constexpr auto HEIGHT=height; const unsigned short buffer[width*height]; + std::optional name{std::nullopt}; + }; } // namespace espgui