vertra 0.3.0

A cross-platform graphics editor built with Rust and WebAssembly.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Re-exports of winit event types used throughout the Vertra public API.
//!
//! Import from here rather than directly from `winit` so that the engine's
//! winit version stays in sync with all call sites.

pub use winit::{
    event::{
        DeviceEvent, ElementState, Event, Modifiers, MouseButton,
        MouseScrollDelta, WindowEvent,
    },
    event_loop::{ControlFlow, EventLoop, EventLoopWindowTarget},
    keyboard::PhysicalKey,
};