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

14 lines
212 B
C++

#pragma once
#include <daguerre/image.hpp>
struct window {
daguerre::image<daguerre::hilbert_color> contents;
int x;
int y;
window(int width, int height) : contents(width, height), x(0), y(0) {}
};