1
2
3
4
5
6
7
/// The base window trait that every lambda window implementation must have to
/// work with lambda::core components.
pub trait WindowAPI {
  fn new() -> Self;
  fn redraw(&self);
  fn close(&self);
}