amaranth/src/Costants.hs

20 lines
328 B
Haskell
Raw Normal View History

module Costants where
import Canvas
import Graphics.Gloss
2022-07-31 17:44:14 +02:00
display :: Display
display = InWindow "Amaranth" windowSize (0,0)
background :: Color
background = white
initial :: Canvas
initial = Canvas {
items = []
, mode = Brush
, drawing = False
2022-07-31 17:44:14 +02:00
, pos = (0, 0)
2022-07-31 18:58:13 +02:00
, tip = Tip Rectangular 3
}