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
use ut_dialog::ut::Dialog;

fn main() {
    let dialog = Dialog::new(
        "* This cheese has been here so  long, a magical crystal has  grown around it."
    );

    // dialog.next();

    dialog.image.save("test_dialog.png")
        .expect("couldn't save image");

    // assert_eq!('*', dialog.current_char);
}