14 lines
212 B
C++
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) {}
|
|
|
|
};
|