implemented a custom text editor (but still no fs to use it with 😭)

This commit is contained in:
FantasyPvP
2024-11-14 22:43:49 +00:00
parent f40e0585df
commit 1588b4fbf3
10 changed files with 379 additions and 5 deletions
@@ -118,6 +118,12 @@ impl Position {
}
}
pub fn zero() -> Position {
Position {
x: 0,
y: 0,
}
}
}
impl core::ops::Add for Position {
+1 -1
View File
@@ -1,3 +1,3 @@
// pub mod libgui_old_archive;
pub mod coords;
pub mod geometry;
pub mod libgui;