LumaShow/src/panel.h
2024-08-16 03:22:08 -06:00

27 lines
323 B
C++

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