summaryrefslogtreecommitdiff
path: root/applications/goldman/source/window.hpp
blob: 4d5b0e182c051b87fdd020379afd5e0d30a4a5e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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) {}

};