PocketPutr/Desktop_Test/window.h
2025-12-14 13:00:01 +01:00

22 lines
318 B
C++

#pragma once
#include <string>
#include <vector>
enum class WindowAction {
EXIT = 1,
FILE = 2,
HELP = 3,
};
struct Window {
int id;
int x;
int y;
int width;
int height;
int background_color;
int foreground_color;
bool focused;
std::string title;
std::vector<WindowAction> window_actions;
};