From 83e4ac1499b548957c554f740934b9b2a02310aa Mon Sep 17 00:00:00 2001 From: tcmal Date: Sun, 25 Aug 2024 17:44:21 +0100 Subject: refactor(all): 2018 edition --- examples/render-bsp/Cargo.toml | 1 + examples/render-bsp/src/main.rs | 20 -------------------- 2 files changed, 1 insertion(+), 20 deletions(-) (limited to 'examples') diff --git a/examples/render-bsp/Cargo.toml b/examples/render-bsp/Cargo.toml index b8b5a9d..eb58e4a 100644 --- a/examples/render-bsp/Cargo.toml +++ b/examples/render-bsp/Cargo.toml @@ -2,6 +2,7 @@ name = "render-bsp" version = "0.1.0" authors = ["Oscar "] +edition = "2018" [dependencies] stockton-render = { path = "../../stockton-render", features = ["vulkan"] } diff --git a/examples/render-bsp/src/main.rs b/examples/render-bsp/src/main.rs index 8278f1e..1f85ed8 100644 --- a/examples/render-bsp/src/main.rs +++ b/examples/render-bsp/src/main.rs @@ -15,28 +15,8 @@ * with this program. If not, see . */ -// 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 . - //! Renders ./example.bsp -extern crate log; -extern crate simple_logger; -extern crate stockton_levels; -extern crate stockton_render; -extern crate stockton_types; -extern crate winit; - use winit::{event::Event, event_loop::EventLoop, window::WindowBuilder}; use stockton_levels::{prelude::*, q3::Q3BSPFile}; -- cgit v1.2.3