LumaShow/src/panel.h

27 lines
323 B
C
Raw Normal View History

2024-08-15 02:11:50 -06:00
//
// 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