aboutsummaryrefslogtreecommitdiff
path: root/src/render.rs
blob: f642a040ad9f48b87d68bb079af82d3f97a2d7cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use sdl2::pixels::Color;
use sdl2::rect::{Point, Rect};

pub enum Signal {
    Redraw,
    Request(RequestData),
    DrawStatusline,
    DrawCommandBox,
    DrawBrush,
    DrawLineToGrid,
    DrawSymmetry,
    DrawApp,
    Quit,
}

pub enum RequestData {
    WinSize,
    MouseLoc,
}