This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
hilbert-os/applications/goldman/source/window.hpp

18 lines
223 B
C++

#pragma once
#include <daguerre/image.hpp>
struct window {
daguerre::image<daguerre::hilbert_color> contents;
int x;
int y;
bool is_shown;
std::string title;
window() : x(0), y(0), is_shown(false) {}
};