Skip to content

Commit

Permalink
"Auto commit number 7"
Browse files Browse the repository at this point in the history
  • Loading branch information
lat-murmeldjur committed Aug 9, 2024
1 parent 0ac3cb1 commit 4607b61
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion chronicl.dt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6
7
2 changes: 1 addition & 1 deletion featuring.dt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6
7
1 change: 1 addition & 0 deletions ohio.note
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ Year::2024::|::Month::08::|::Day::04::|::Hour::16::|::Minute::03::|::Second::10:
Year::2024::|::Month::08::|::Day::04::|::Hour::16::|::Minute::05::|::Second::25::
Year::2024::|::Month::08::|::Day::04::|::Hour::16::|::Minute::09::|::Second::05::
Year::2024::|::Month::08::|::Day::04::|::Hour::16::|::Minute::17::|::Second::52::
Year::2024::|::Month::08::|::Day::09::|::Hour::14::|::Minute::52::|::Second::49::
8 changes: 4 additions & 4 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,20 +79,20 @@ struct Flow {
}

impl ApplicationHandler for Flow {
fn new_events(&mut self, _event_loop: &ActiveEventLoop, cause: StartCause) {
fn new_events(&mut self, _event_loop: &dyn ActiveEventLoop, cause: StartCause) {
println!("new_events: {cause:?}");
}

fn can_create_surfaces(&mut self, event_loop: &ActiveEventLoop) {
fn can_create_surfaces(&mut self, event_loop: &dyn ActiveEventLoop) {
let window_attributes = Window::default_attributes()
.with_title("watercloudocean")
.with_title("watercloudfall")
.with_fullscreen(Some(Fullscreen::Borderless(None)));
self.window = Some(event_loop.create_window(window_attributes).unwrap());
}

fn window_event(
&mut self,
_event_loop: &ActiveEventLoop,
_event_loop: &dyn ActiveEventLoop,
_window_id: WindowId,
event: WindowEvent,
) {
Expand Down

0 comments on commit 4607b61

Please sign in to comment.