init repo

This commit is contained in:
electria 2026-06-24 21:29:26 -07:00
commit 1949a815ee
Signed by: electria
SSH key fingerprint: SHA256:8LlB3ucPbBHqozqkhsNbaV5oG3SlzzqUj8FZDL6IPQs
7 changed files with 4152 additions and 0 deletions

18
src/main.rs Normal file
View file

@ -0,0 +1,18 @@
use iced::{Element, Renderer, Theme, widget};
enum Message {}
struct State {}
impl State {
fn new() -> Self {
Self {}
}
fn view(&self) -> Element<'_, Message, Theme, Renderer> {
widget::space().into()
}
fn update(&mut self, message: Message) {}
}
fn main() -> Result<(), iced::Error> {
iced::application(State::new, State::update, State::view).run()
}