Advertisement
Guest User

Untitled

a guest
May 11th, 2020
9
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1.  
  2. pub struct Drawing<'a> {
  3. pub dt: DrawTarget,
  4. pub font: &'a Font,
  5. window_w: f32,
  6. window_h: f32,
  7. // just for debug
  8. pub count: i32,
  9. // mouse
  10. mouse_x: f32,
  11. mouse_y: f32,
  12. pub last_click: time::Instant,
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement