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