parker is a stupid faggot

main
Brett 2025-03-10 17:42:49 -04:00
parent 3f59528ecc
commit 767bd95fbe
3 changed files with 7 additions and 1 deletions

View File

@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.20) cmake_minimum_required(VERSION 3.20)
include(cmake/color.cmake) include(cmake/color.cmake)
set(BLT_VERSION 5.2.11) set(BLT_VERSION 5.2.12)
set(BLT_TARGET BLT) set(BLT_TARGET BLT)

View File

@ -49,6 +49,7 @@ namespace blt::logging
virtual ~status_bar_t() override; virtual ~status_bar_t() override;
private: private:
i32 m_status_size; i32 m_status_size;
i32 m_last_position[2];
}; };
} }

View File

@ -107,6 +107,11 @@ namespace blt
} }
} }
[[nodiscard]] const std::array<T, size>& to_array() const
{
return elements;
}
[[nodiscard]] constexpr inline T x() const [[nodiscard]] constexpr inline T x() const
{ {
return elements[0]; return elements[0];