This commit is contained in:
2023-05-20 14:11:35 +02:00
parent 7f6b7f4695
commit 7576850ae0
109 changed files with 10720 additions and 0 deletions

17
app/src-tauri/src/main.rs Normal file
View File

@@ -0,0 +1,17 @@
// Prevents additional console window on Windows in release, DO NOT REMOVE!!
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
use crate::{animation::timeline::calculate_timeline_entities_at_frame, fonts::get_system_fonts};
pub mod animation;
pub mod fonts;
fn main() {
tauri::Builder::default()
.invoke_handler(tauri::generate_handler![
calculate_timeline_entities_at_frame,
get_system_fonts
])
.run(tauri::generate_context!())
.expect("error while running tauri application");
}