ut-dialog 0.1.0

A work-in-progress UNDERTALE dialog box generator library
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod ut;
pub mod dr;

/*
const MAGICAL_CHEESE_DIALOG: &str
    = "* This cheese has been here so&  long^1, a magical crystal has&  grown around it./";

const MAGICAL_CHEESE_DIALOG_CLEAN: &str
    = "* This cheese has been here so  long, a magical crystal has  grown around it.";

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}
*/