// // Created by illyum on 8/15/2024. // #ifndef PANEL_H #define PANEL_H #include "raylib.h" #include #include struct Panel { Rectangle bounds; std::string title; Color backgroundColor; Color headerColor; bool isVisible; void Draw(); void Update(); }; #endif //PANEL_H