diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 9c65333..7ed8df1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -5,6 +5,7 @@ mod font; pub mod generated; mod interpolation; mod render; +pub mod vendored; use std::time::{Duration, SystemTime}; @@ -17,6 +18,8 @@ pub fn main() { let window = &mut video_subsystem .window("Cosin25 Invite", 512, 256) .position_centered() + // works lol: + // .resizable() .build() .unwrap(); |