blob: 008af2fcf2a0f1ad0690e78628c20b8b24f5e9e9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#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) {}
};
|