From e450ad0f9cbc2d215a8f03d2d39260abe19fb5af Mon Sep 17 00:00:00 2001 From: Manos Pitsidianakis Date: Mon, 19 Sep 2022 22:04:10 +0300 Subject: [PATCH] types.rs: remove unused struct --- src/types.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/types.rs b/src/types.rs index 3cb2dfc4..e50a9797 100644 --- a/src/types.rs +++ b/src/types.rs @@ -195,14 +195,6 @@ impl fmt::Display for UIMode { } } -/// An event notification that is passed to Entities for handling. -pub struct Notification { - _title: String, - _content: String, - - _timestamp: std::time::Instant, -} - pub mod segment_tree { /*! Simple segment tree implementation for maximum in range queries. This is useful if given an * array of numbers you want to get the maximum value inside an interval quickly.