typo-eq 0.2.0

Typo-eq is a typing training app for other languages. All it needs is a dictionary for words and their translations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use std::collections::HashMap;

use bevy::asset::HandleId;

use crate::importer::dictionary::Dictionary;

#[derive(Clone, Default)]
pub struct AppAssets {
    pub fonts: HashMap<String, HandleId>
}

#[derive(Clone, Default)]
pub struct AppState {
    pub dict: Option<Dictionary>,
    pub count: u32,
}