summaryrefslogtreecommitdiff
path: root/chisel/window.h
blob: ede14298da6d8e3e945f82e9c896881666e5fb19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include <string>

#include "box.h"

namespace chisel {
    struct Window : public Box {
        std::string& title();
        void title(std::string title);

        void run();

        void fill_rect(float x, float y, float width, float height);
    };
}