diff options
author | tcmal <me@aria.rip> | 2024-08-25 17:44:21 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-08-25 17:44:21 +0100 |
commit | 95708732572431dc057a9fd71fa8bd8571a336a2 (patch) | |
tree | 3255e3407eb069c8124d41e1d6f60163b7c5091d /stockton-render/src/window.rs | |
parent | 9bceddef62c48b56e7b93a2ca19636e1ff6486cb (diff) |
feat(all): start using an ECS
Diffstat (limited to 'stockton-render/src/window.rs')
-rw-r--r-- | stockton-render/src/window.rs | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/stockton-render/src/window.rs b/stockton-render/src/window.rs new file mode 100644 index 0000000..4520ae8 --- /dev/null +++ b/stockton-render/src/window.rs @@ -0,0 +1,35 @@ +/* + * Copyright (C) Oscar Shrimpton 2020 + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) + * any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along + * with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use Renderer; + +use winit::event::Event as WinitEvent; + +pub struct WindowEvent {} + +impl WindowEvent { + pub fn from(_winit_event: &WinitEvent<()>) -> WindowEvent { + // TODO + WindowEvent {} + } +} + +#[system] +/// A system to process the window events sent to renderer by the winit event loop. +pub fn process_window_events(#[resource] _renderer: &mut Renderer<'static>) { + println!("processing window events..."); +} |